Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: Change Dir: /mnt/sdb1/pub/slack-stuff/umr/build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_734c0/fast && /usr/bin/gmake -f CMakeFiles/cmTC_734c0.dir/build.make CMakeFiles/cmTC_734c0.dir/build gmake[1]: Entering directory '/mnt/sdb1/pub/slack-stuff/umr/build/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_734c0.dir/src.c.o /usr/bin/cc -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_734c0.dir/src.c.o -c /mnt/sdb1/pub/slack-stuff/umr/build/CMakeFiles/CMakeTmp/src.c Linking C executable cmTC_734c0 /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_734c0.dir/link.txt --verbose=1 /usr/bin/cc -rdynamic CMakeFiles/cmTC_734c0.dir/src.c.o -o cmTC_734c0 /usr/bin/ld: CMakeFiles/cmTC_734c0.dir/src.c.o: in function `main': src.c:(.text+0x2d): undefined reference to `pthread_create' /usr/bin/ld: src.c:(.text+0x39): undefined reference to `pthread_detach' /usr/bin/ld: src.c:(.text+0x45): undefined reference to `pthread_cancel' /usr/bin/ld: src.c:(.text+0x56): undefined reference to `pthread_join' collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_734c0.dir/build.make:99: cmTC_734c0] Error 1 gmake[1]: Leaving directory '/mnt/sdb1/pub/slack-stuff/umr/build/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_734c0/fast] Error 2 Source file was: #include static void* test_func(void* data) { return data; } int main(void) { pthread_t thread; pthread_create(&thread, NULL, test_func, NULL); pthread_detach(thread); pthread_cancel(thread); pthread_join(thread, NULL); pthread_atfork(NULL, NULL, NULL); pthread_exit(NULL); return 0; } Determining if the function pthread_create exists in the pthreads failed with the following output: Change Dir: /mnt/sdb1/pub/slack-stuff/umr/build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/gmake -f Makefile cmTC_82cff/fast && /usr/bin/gmake -f CMakeFiles/cmTC_82cff.dir/build.make CMakeFiles/cmTC_82cff.dir/build gmake[1]: Entering directory '/mnt/sdb1/pub/slack-stuff/umr/build/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_82cff.dir/CheckFunctionExists.c.o /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_82cff.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.21/Modules/CheckFunctionExists.c Linking C executable cmTC_82cff /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_82cff.dir/link.txt --verbose=1 /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_82cff.dir/CheckFunctionExists.c.o -o cmTC_82cff -lpthreads /usr/bin/ld: cannot find -lpthreads collect2: error: ld returned 1 exit status gmake[1]: *** [CMakeFiles/cmTC_82cff.dir/build.make:99: cmTC_82cff] Error 1 gmake[1]: Leaving directory '/mnt/sdb1/pub/slack-stuff/umr/build/CMakeFiles/CMakeTmp' gmake: *** [Makefile:127: cmTC_82cff/fast] Error 2