Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: Change Dir: /tmp/instance-7/output-1/build/pistache-f2f5a50fbfb5b8ef6cf1d3d2a9d442a8270e375d/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make cmTC_a3685/fast && make[1]: Entering directory '/tmp/instance-7/output-1/build/pistache-f2f5a50fbfb5b8ef6cf1d3d2a9d442a8270e375d/CMakeFiles/CMakeTmp' /usr/bin/make -f CMakeFiles/cmTC_a3685.dir/build.make CMakeFiles/cmTC_a3685.dir/build make[2]: Entering directory '/tmp/instance-7/output-1/build/pistache-f2f5a50fbfb5b8ef6cf1d3d2a9d442a8270e375d/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_a3685.dir/src.c.o /tmp/instance-7/output-1/host/bin/arm-buildroot-linux-gnueabihf-gcc --sysroot=/tmp/instance-7/output-1/host/arm-buildroot-linux-gnueabihf/sysroot -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_FORTIFY_SOURCE=1 -DCMAKE_HAVE_LIBC_PTHREAD -DNDEBUG -o CMakeFiles/cmTC_a3685.dir/src.c.o -c /tmp/instance-7/output-1/build/pistache-f2f5a50fbfb5b8ef6cf1d3d2a9d442a8270e375d/CMakeFiles/CMakeTmp/src.c Linking C executable cmTC_a3685 /tmp/instance-7/output-1/host/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3685.dir/link.txt --verbose=1 /tmp/instance-7/output-1/host/bin/arm-buildroot-linux-gnueabihf-gcc --sysroot=/tmp/instance-7/output-1/host/arm-buildroot-linux-gnueabihf/sysroot -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -g0 -D_FORTIFY_SOURCE=1 -DCMAKE_HAVE_LIBC_PTHREAD -DNDEBUG CMakeFiles/cmTC_a3685.dir/src.c.o -o cmTC_a3685 /tmp/instance-7/output-1/host/lib/gcc/arm-buildroot-linux-gnueabihf/11.1.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld: CMakeFiles/cmTC_a3685.dir/src.c.o: in function `main': src.c:(.text.startup+0x34): undefined reference to `pthread_create' /tmp/instance-7/output-1/host/lib/gcc/arm-buildroot-linux-gnueabihf/11.1.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld: src.c:(.text.startup+0x3c): undefined reference to `pthread_detach' /tmp/instance-7/output-1/host/lib/gcc/arm-buildroot-linux-gnueabihf/11.1.0/../../../../arm-buildroot-linux-gnueabihf/bin/ld: src.c:(.text.startup+0x48): undefined reference to `pthread_join' collect2: error: ld returned 1 exit status make[2]: *** [CMakeFiles/cmTC_a3685.dir/build.make:90: cmTC_a3685] Error 1 make[2]: Leaving directory '/tmp/instance-7/output-1/build/pistache-f2f5a50fbfb5b8ef6cf1d3d2a9d442a8270e375d/CMakeFiles/CMakeTmp' make[1]: *** [Makefile:124: cmTC_a3685/fast] Error 2 make[1]: Leaving directory '/tmp/instance-7/output-1/build/pistache-f2f5a50fbfb5b8ef6cf1d3d2a9d442a8270e375d/CMakeFiles/CMakeTmp' Source file was: #include void* test_func(void* data) { return data; } int main(void) { pthread_t thread; pthread_create(&thread, NULL, test_func, NULL); pthread_detach(thread); pthread_join(thread, NULL); pthread_atfork(NULL, NULL, NULL); pthread_exit(NULL); return 0; }