Performing C++ SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output: Change Dir: /home/duongtd/robotics_core/robot_time/build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make cmTC_43bcd/fast && /usr/bin/make -f CMakeFiles/cmTC_43bcd.dir/build.make CMakeFiles/cmTC_43bcd.dir/build make[1]: Entering directory '/home/duongtd/robotics_core/robot_time/build/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_43bcd.dir/src.cxx.o /usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD -std=c++17 -o CMakeFiles/cmTC_43bcd.dir/src.cxx.o -c /home/duongtd/robotics_core/robot_time/build/CMakeFiles/CMakeTmp/src.cxx Linking CXX executable cmTC_43bcd /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_43bcd.dir/link.txt --verbose=1 /usr/bin/c++ -DCMAKE_HAVE_LIBC_PTHREAD CMakeFiles/cmTC_43bcd.dir/src.cxx.o -o cmTC_43bcd /usr/bin/ld: CMakeFiles/cmTC_43bcd.dir/src.cxx.o: in function `main': src.cxx:(.text+0x46): undefined reference to `pthread_create' /usr/bin/ld: src.cxx:(.text+0x52): undefined reference to `pthread_detach' /usr/bin/ld: src.cxx:(.text+0x63): undefined reference to `pthread_join' collect2: error: ld returned 1 exit status make[1]: *** [CMakeFiles/cmTC_43bcd.dir/build.make:87: cmTC_43bcd] Error 1 make[1]: Leaving directory '/home/duongtd/robotics_core/robot_time/build/CMakeFiles/CMakeTmp' make: *** [Makefile:121: cmTC_43bcd/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/duongtd/robotics_core/robot_time/build/CMakeFiles/CMakeTmp Run Build Command(s):/usr/bin/make cmTC_db91f/fast && /usr/bin/make -f CMakeFiles/cmTC_db91f.dir/build.make CMakeFiles/cmTC_db91f.dir/build make[1]: Entering directory '/home/duongtd/robotics_core/robot_time/build/CMakeFiles/CMakeTmp' Building CXX object CMakeFiles/cmTC_db91f.dir/CheckFunctionExists.cxx.o /usr/bin/c++ -DCHECK_FUNCTION_EXISTS=pthread_create -std=c++17 -o CMakeFiles/cmTC_db91f.dir/CheckFunctionExists.cxx.o -c /home/duongtd/robotics_core/robot_time/build/CMakeFiles/CheckLibraryExists/CheckFunctionExists.cxx Linking CXX executable cmTC_db91f /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_db91f.dir/link.txt --verbose=1 /usr/bin/c++ -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_db91f.dir/CheckFunctionExists.cxx.o -o cmTC_db91f -lpthreads /usr/bin/ld: cannot find -lpthreads collect2: error: ld returned 1 exit status make[1]: *** [CMakeFiles/cmTC_db91f.dir/build.make:87: cmTC_db91f] Error 1 make[1]: Leaving directory '/home/duongtd/robotics_core/robot_time/build/CMakeFiles/CMakeTmp' make: *** [Makefile:121: cmTC_db91f/fast] Error 2