Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: Change Dir: /home/prashant/software/amber20_src/build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make cmTC_855aa/fast && /usr/bin/make -f CMakeFiles/cmTC_855aa.dir/build.make CMakeFiles/cmTC_855aa.dir/build make[1]: Entering directory '/home/prashant/software/amber20_src/build/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_855aa.dir/src.c.o /usr/bin/gcc -fPIC -DCMAKE_HAVE_LIBC_PTHREAD -std=gnu99 -o CMakeFiles/cmTC_855aa.dir/src.c.o -c /home/prashant/software/amber20_src/build/CMakeFiles/CMakeTmp/src.c Linking C executable cmTC_855aa /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_855aa.dir/link.txt --verbose=1 /usr/bin/gcc -fPIC -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_855aa.dir/src.c.o -o cmTC_855aa /usr/bin/ld: CMakeFiles/cmTC_855aa.dir/src.c.o: in function `main': src.c:(.text+0x46): undefined reference to `pthread_create' /usr/bin/ld: src.c:(.text+0x52): undefined reference to `pthread_detach' /usr/bin/ld: src.c:(.text+0x63): undefined reference to `pthread_join' collect2: error: ld returned 1 exit status make[1]: *** [CMakeFiles/cmTC_855aa.dir/build.make:87: cmTC_855aa] Error 1 make[1]: Leaving directory '/home/prashant/software/amber20_src/build/CMakeFiles/CMakeTmp' make: *** [Makefile:121: cmTC_855aa/fast] Error 2 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; } Determining if the function pthread_create exists in the pthreads failed with the following output: Change Dir: /home/prashant/software/amber20_src/build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make cmTC_1db8c/fast && /usr/bin/make -f CMakeFiles/cmTC_1db8c.dir/build.make CMakeFiles/cmTC_1db8c.dir/build make[1]: Entering directory '/home/prashant/software/amber20_src/build/CMakeFiles/CMakeTmp' Building C object CMakeFiles/cmTC_1db8c.dir/CheckFunctionExists.c.o /usr/bin/gcc -fPIC -DCHECK_FUNCTION_EXISTS=pthread_create -std=gnu99 -o CMakeFiles/cmTC_1db8c.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c Linking C executable cmTC_1db8c /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1db8c.dir/link.txt --verbose=1 /usr/bin/gcc -fPIC -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_1db8c.dir/CheckFunctionExists.c.o -o cmTC_1db8c -lpthreads /usr/bin/ld: cannot find -lpthreads collect2: error: ld returned 1 exit status make[1]: *** [CMakeFiles/cmTC_1db8c.dir/build.make:87: cmTC_1db8c] Error 1 make[1]: Leaving directory '/home/prashant/software/amber20_src/build/CMakeFiles/CMakeTmp' make: *** [Makefile:121: cmTC_1db8c/fast] Error 2