CMakeError.log 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. Performing C SOURCE FILE Test CMAKE_HAVE_LIBC_PTHREAD failed with the following output:
  2. Change Dir: /home/cl/onnx_run/yolo_crowd_run/CMakeFiles/CMakeTmp
  3. Run Build Command(s):/usr/bin/make cmTC_e316a/fast && /usr/bin/make -f CMakeFiles/cmTC_e316a.dir/build.make CMakeFiles/cmTC_e316a.dir/build
  4. make[1]: 进入目录“/home/cl/onnx_run/yolo_crowd_run/CMakeFiles/CMakeTmp”
  5. Building C object CMakeFiles/cmTC_e316a.dir/src.c.o
  6. /usr/bin/cc -fPIC -DCMAKE_HAVE_LIBC_PTHREAD -o CMakeFiles/cmTC_e316a.dir/src.c.o -c /home/cl/onnx_run/yolo_crowd_run/CMakeFiles/CMakeTmp/src.c
  7. Linking C executable cmTC_e316a
  8. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e316a.dir/link.txt --verbose=1
  9. /usr/bin/cc -fPIC -DCMAKE_HAVE_LIBC_PTHREAD -rdynamic CMakeFiles/cmTC_e316a.dir/src.c.o -o cmTC_e316a
  10. /usr/bin/ld: CMakeFiles/cmTC_e316a.dir/src.c.o: in function `main':
  11. src.c:(.text+0x46): undefined reference to `pthread_create'
  12. /usr/bin/ld: src.c:(.text+0x52): undefined reference to `pthread_detach'
  13. /usr/bin/ld: src.c:(.text+0x63): undefined reference to `pthread_join'
  14. collect2: error: ld returned 1 exit status
  15. make[1]: *** [CMakeFiles/cmTC_e316a.dir/build.make:87:cmTC_e316a] 错误 1
  16. make[1]: 离开目录“/home/cl/onnx_run/yolo_crowd_run/CMakeFiles/CMakeTmp”
  17. make: *** [Makefile:121:cmTC_e316a/fast] 错误 2
  18. Source file was:
  19. #include <pthread.h>
  20. void* test_func(void* data)
  21. {
  22. return data;
  23. }
  24. int main(void)
  25. {
  26. pthread_t thread;
  27. pthread_create(&thread, NULL, test_func, NULL);
  28. pthread_detach(thread);
  29. pthread_join(thread, NULL);
  30. pthread_atfork(NULL, NULL, NULL);
  31. pthread_exit(NULL);
  32. return 0;
  33. }
  34. Determining if the function pthread_create exists in the pthreads failed with the following output:
  35. Change Dir: /home/cl/onnx_run/yolo_crowd_run/CMakeFiles/CMakeTmp
  36. Run Build Command(s):/usr/bin/make cmTC_7a2f5/fast && /usr/bin/make -f CMakeFiles/cmTC_7a2f5.dir/build.make CMakeFiles/cmTC_7a2f5.dir/build
  37. make[1]: 进入目录“/home/cl/onnx_run/yolo_crowd_run/CMakeFiles/CMakeTmp”
  38. Building C object CMakeFiles/cmTC_7a2f5.dir/CheckFunctionExists.c.o
  39. /usr/bin/cc -fPIC -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_7a2f5.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.16/Modules/CheckFunctionExists.c
  40. Linking C executable cmTC_7a2f5
  41. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7a2f5.dir/link.txt --verbose=1
  42. /usr/bin/cc -fPIC -DCHECK_FUNCTION_EXISTS=pthread_create -rdynamic CMakeFiles/cmTC_7a2f5.dir/CheckFunctionExists.c.o -o cmTC_7a2f5 -lpthreads
  43. /usr/bin/ld: 找不到 -lpthreads
  44. collect2: error: ld returned 1 exit status
  45. make[1]: *** [CMakeFiles/cmTC_7a2f5.dir/build.make:87:cmTC_7a2f5] 错误 1
  46. make[1]: 离开目录“/home/cl/onnx_run/yolo_crowd_run/CMakeFiles/CMakeTmp”
  47. make: *** [Makefile:121:cmTC_7a2f5/fast] 错误 2