Advertisement
Guest User

Untitled

a guest
May 2nd, 2018
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.77 KB | None | 0 0
  1. Determining if the pthread_create exist failed with the following output:
  2. Change Dir: /home/planetio/Trinity Eluna/build/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command:"/usr/bin/make" "cmTC_37d63/fast"
  5. /usr/bin/make -f CMakeFiles/cmTC_37d63.dir/build.make CMakeFiles/cmTC_37d63.dir/build
  6. make[1]: Entering directory '/home/planetio/Trinity Eluna/build/CMakeFiles/CMakeTmp'
  7. Building C object CMakeFiles/cmTC_37d63.dir/CheckSymbolExists.c.o
  8. /usr/bin/cc -o CMakeFiles/cmTC_37d63.dir/CheckSymbolExists.c.o -c "/home/planetio/Trinity Eluna/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c"
  9. Linking C executable cmTC_37d63
  10. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_37d63.dir/link.txt --verbose=1
  11. /usr/bin/cc CMakeFiles/cmTC_37d63.dir/CheckSymbolExists.c.o -o cmTC_37d63 -rdynamic
  12. CMakeFiles/cmTC_37d63.dir/CheckSymbolExists.c.o: In function `main':
  13. CheckSymbolExists.c:(.text+0x1b): undefined reference to `pthread_create'
  14. collect2: error: ld returned 1 exit status
  15. CMakeFiles/cmTC_37d63.dir/build.make:97: recipe for target 'cmTC_37d63' failed
  16. make[1]: *** [cmTC_37d63] Error 1
  17. make[1]: Leaving directory '/home/planetio/Trinity Eluna/build/CMakeFiles/CMakeTmp'
  18. Makefile:126: recipe for target 'cmTC_37d63/fast' failed
  19. make: *** [cmTC_37d63/fast] Error 2
  20.  
  21. File /home/planetio/Trinity Eluna/build/CMakeFiles/CMakeTmp/CheckSymbolExists.c:
  22. /* */
  23. #include <pthread.h>
  24.  
  25. int main(int argc, char** argv)
  26. {
  27. (void)argv;
  28. #ifndef pthread_create
  29. return ((int*)(&pthread_create))[argc];
  30. #else
  31. (void)argc;
  32. return 0;
  33. #endif
  34. }
  35.  
  36. Determining if the function pthread_create exists in the pthreads failed with the following output:
  37. Change Dir: /home/planetio/Trinity Eluna/build/CMakeFiles/CMakeTmp
  38.  
  39. Run Build Command:"/usr/bin/make" "cmTC_abc68/fast"
  40. /usr/bin/make -f CMakeFiles/cmTC_abc68.dir/build.make CMakeFiles/cmTC_abc68.dir/build
  41. make[1]: Entering directory '/home/planetio/Trinity Eluna/build/CMakeFiles/CMakeTmp'
  42. Building C object CMakeFiles/cmTC_abc68.dir/CheckFunctionExists.c.o
  43. /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_abc68.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.7/Modules/CheckFunctionExists.c
  44. Linking C executable cmTC_abc68
  45. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_abc68.dir/link.txt --verbose=1
  46. /usr/bin/cc -DCHECK_FUNCTION_EXISTS=pthread_create CMakeFiles/cmTC_abc68.dir/CheckFunctionExists.c.o -o cmTC_abc68 -rdynamic -lpthreads
  47. /usr/bin/ld: cannot find -lpthreads
  48. collect2: error: ld returned 1 exit status
  49. CMakeFiles/cmTC_abc68.dir/build.make:97: recipe for target 'cmTC_abc68' failed
  50. make[1]: *** [cmTC_abc68] Error 1
  51. make[1]: Leaving directory '/home/planetio/Trinity Eluna/build/CMakeFiles/CMakeTmp'
  52. Makefile:126: recipe for target 'cmTC_abc68/fast' failed
  53. make: *** [cmTC_abc68/fast] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement