Karame, I think the problem comes from spelling "debug" in all lower-case letters, whereas the Makefile for the build test that was being built at that point expects "Debug". Conventionally CMAKE_BUILD_TYPE is specified in PascalCase, but it should accept any case (also "dEbUG").
On another note, "make -j install" is not a good idea. make will spawn as many jobs as it can, which can easily lead to out-of-memory situations. I recommend you use "make -j$(nproc)" or just stick to 2 or 4 concurrent jobs if you don't have much memory on the build machine. "make examples" after "make install" is also unnecessary as "make install" will build and install examples. Mikael ________________________________ From: [email protected] <[email protected]> on behalf of Karame Mohammadiporshokooh <[email protected]> Sent: Friday, June 19, 2020 7:48:58 PM To: [email protected] Subject: Re: [hpx-users] FW: make test Mikael, Yes, this is the dockerfile: https://github.com/kmoham6/python/blob/arg_parse_docker_prmt/Dockerfile ________________________________ From: [email protected] <[email protected]> on behalf of Simberg Mikael <[email protected]> Sent: Friday, June 19, 2020 12:21 PM To: [email protected] <[email protected]> Subject: Re: [hpx-users] FW: make test Hi Karame, Since it looks like you're trying to build a container image with HPX inside, it might be easiest if you share your dockerfile (if that's indeed what you're doing). There doesn't seem to be anything obviously wrong in your cmake configuration, so there's some other piece of information we're still missing. Mikael ________________________________ From: [email protected] <[email protected]> on behalf of Karame Mohammadiporshokooh <[email protected]> Sent: Friday, June 19, 2020 6:22:43 PM To: [email protected] Subject: Re: [hpx-users] FW: make test Hi Mikael, This is the commit on github that I am using : ( https://github.com/STEllAR-GROUP/hpx.git<https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FSTEllAR-GROUP%2Fhpx.git&data=02%7C01%7Ckmoham6%40lsu.edu%7C8b49acfc3242432e6b8708d814754172%7C2d4dad3f50ae47d983a09ae2b1f466f8%7C0%7C0%7C637281841168815555&sdata=8x2G%2B7e6q1eifjZOa8sbeKN0Jv1MGQDSis9BWREpXE8%3D&reserved=0> ) and Here is Cmake configuration : RUN cmake \ -DCMAKE_BUILD_TYPE=debug \ -DHPX_WITH_MALLOC=system \ -DHPX_WITH_MORE_THAN_64_THREADS=ON \ -DHPX_WITH_MAX_CPU_COUNT=80 \ -DHPX_WITH_EXAMPLES=ON \ -DHPX_WITH_TESTS=ON \ -DHPX_WITH_TESTS_BENCHMARKS=ON \ -DHPX_WITH_TESTS_REGRESSIONS=ON \ -DHPX_WITH_TESTS_UNIT=ON \ Thanks Karame ________________________________ From: [email protected] <[email protected]> on behalf of Simberg Mikael <[email protected]> Sent: Friday, June 19, 2020 4:58 AM To: [email protected] <[email protected]> Subject: Re: [hpx-users] FW: make test Hi Karame, Please post the full build log including your cmake configuration and which commit of HPX you're building (e.g. on gist.github.com). Mikael ________________________________ From: [email protected] <[email protected]> on behalf of Karame Mohammadiporshokooh <[email protected]> Sent: Thursday, June 18, 2020 10:12:05 PM To: [email protected] Subject: Re: [hpx-users] FW: make test This is not in Phylanx. It is just HPX. ________________________________ From: [email protected] <[email protected]> on behalf of Steven R. Brandt <[email protected]> Sent: Thursday, June 18, 2020 2:41 PM To: [email protected] <[email protected]> Subject: Re: [hpx-users] FW: make test It looks like phylanx isn't finding hpx_iostreams. Is everything built consistently, i.e. all Release or all Debug? Is -DHPX_DIR=... pointing to the HPX cmake dir? For me that's /usr/local/lib64/cmake/HPX --Steve On 6/18/2020 1:36 PM, Hartmut Kaiser wrote: Karame, I’m forwarding this to hpx-users to see if others have seen this kind of problem before (as I haven’t). Thanks! Regards Hartmut --------------- http://stellar.cct.lsu.edu<http://stellar.cct.lsu.edu/> https://github.com/STEllAR-GROUP/hpx<https://nam04.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2FSTEllAR-GROUP%2Fhpx&data=02%7C01%7Ckmoham6%40lsu.edu%7C8b49acfc3242432e6b8708d814754172%7C2d4dad3f50ae47d983a09ae2b1f466f8%7C0%7C0%7C637281841168825544&sdata=o4jW4IWrIioDnRSP%2FGPcFTNnNN0qb2GgEeam46D8cbM%3D&reserved=0> From: Karame Mohammadiporshokooh <[email protected]><mailto:[email protected]> Sent: Thursday, June 18, 2020 12:35 PM To: Hartmut Kaiser <[email protected]><mailto:[email protected]> Subject: make test Good afternoon Dr. Kaiser, I am running make test in my dockerfile for hpx. This is the error I get when I run this. I attach the screen shot. Thanks for any suggestion! Karame _______________________________________________ hpx-users mailing list [email protected]<mailto:[email protected]> https://mail.cct.lsu.edu/mailman/listinfo/hpx-users
_______________________________________________ hpx-users mailing list [email protected] https://mail.cct.lsu.edu/mailman/listinfo/hpx-users
