Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: Change Dir: /tmp/instance-1/output-1/build/i2pd-2.32.1/build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make cmTC_0eae2/fast && make[1]: Entering directory '/tmp/instance-1/output-1/build/i2pd-2.32.1/build/CMakeFiles/CMakeTmp' /usr/bin/make -f CMakeFiles/cmTC_0eae2.dir/build.make CMakeFiles/cmTC_0eae2.dir/build make[2]: Entering directory '/tmp/instance-1/output-1/build/i2pd-2.32.1/build/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_0eae2.dir/src.c.o /tmp/instance-1/output-1/host/bin/x86_64-amd-linux-gnu-gcc --sysroot=/tmp/instance-1/output-1/host/x86_64-buildroot-linux-gnu/sysroot -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -DCMAKE_HAVE_LIBC_PTHREAD -DNDEBUG -o CMakeFiles/cmTC_0eae2.dir/src.c.o -c /tmp/instance-1/output-1/build/i2pd-2.32.1/build/CMakeFiles/CMakeTmp/src.c Linking C executable cmTC_0eae2 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_0eae2.dir/link.txt --verbose=1 /tmp/instance-1/output-1/host/bin/x86_64-amd-linux-gnu-gcc --sysroot=/tmp/instance-1/output-1/host/x86_64-buildroot-linux-gnu/sysroot -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 -Os -DCMAKE_HAVE_LIBC_PTHREAD -DNDEBUG CMakeFiles/cmTC_0eae2.dir/src.c.o -o cmTC_0eae2 CMakeFiles/cmTC_0eae2.dir/src.c.o: In function `main': src.c:(.text.startup+0x13): undefined reference to `pthread_create' src.c:(.text.startup+0x1d): undefined reference to `pthread_detach' src.c:(.text.startup+0x29): undefined reference to `pthread_join' src.c:(.text.startup+0x34): undefined reference to `pthread_atfork' collect2: error: ld returned 1 exit status make[2]: *** [CMakeFiles/cmTC_0eae2.dir/build.make:87: cmTC_0eae2] Error 1 make[2]: Leaving directory '/tmp/instance-1/output-1/build/i2pd-2.32.1/build/CMakeFiles/CMakeTmp' make[1]: *** [Makefile:121: cmTC_0eae2/fast] Error 2 make[1]: Leaving directory '/tmp/instance-1/output-1/build/i2pd-2.32.1/build/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; }