Guest User

Untitled

a guest
Nov 5th, 2016
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.18 KB | None | 0 0
  1. Determining if the pthread_create exist failed with the following output:
  2. Change Dir: /usr/src/kodi/build-20161106-0035/kodi_build/CMakeFiles/CMakeTmp
  3.  
  4. Run Build Command:"/usr/bin/make" "cmTC_78bc0/fast"
  5. /usr/bin/make -f CMakeFiles/cmTC_78bc0.dir/build.make CMakeFiles/cmTC_78bc0.dir/build
  6. make[1]: Wejście do katalogu '/usr/src/kodi/build-20161106-0035/kodi_build/CMakeFiles/CMakeTmp'
  7. Building C object CMakeFiles/cmTC_78bc0.dir/CheckSymbolExists.c.o
  8. /usr/bin/cc -I/usr/local/kodi/git-20161106-0035/include/ -o CMakeFiles/cmTC_78bc0.dir/CheckSymbolExists.c.o -c /usr/src/kodi/build-20161106-0035/kodi_build/CMakeFiles/CMakeTmp/CheckSymbolExists.c
  9. Linking C executable cmTC_78bc0
  10. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_78bc0.dir/link.txt --verbose=1
  11. /usr/bin/cc -I/usr/local/kodi/git-20161106-0035/include/ -L/usr/local/kodi/git-20161106-0035/lib/ CMakeFiles/cmTC_78bc0.dir/CheckSymbolExists.c.o -o cmTC_78bc0 -rdynamic
  12. CMakeFiles/cmTC_78bc0.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_78bc0.dir/build.make:97: polecenia dla obiektu 'cmTC_78bc0' nie powiodły się
  16. make[1]: *** [cmTC_78bc0] Błąd 1
  17. make[1]: Opuszczenie katalogu '/usr/src/kodi/build-20161106-0035/kodi_build/CMakeFiles/CMakeTmp'
  18. Makefile:126: polecenia dla obiektu 'cmTC_78bc0/fast' nie powiodły się
  19. make: *** [cmTC_78bc0/fast] Błąd 2
  20.  
  21. File /usr/src/kodi/build-20161106-0035/kodi_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: /usr/src/kodi/build-20161106-0035/kodi_build/CMakeFiles/CMakeTmp
  38.  
  39. Run Build Command:"/usr/bin/make" "cmTC_e19fa/fast"
  40. /usr/bin/make -f CMakeFiles/cmTC_e19fa.dir/build.make CMakeFiles/cmTC_e19fa.dir/build
  41. make[1]: Wejście do katalogu '/usr/src/kodi/build-20161106-0035/kodi_build/CMakeFiles/CMakeTmp'
  42. Building C object CMakeFiles/cmTC_e19fa.dir/CheckFunctionExists.c.o
  43. /usr/bin/cc -I/usr/local/kodi/git-20161106-0035/include/ -DCHECK_FUNCTION_EXISTS=pthread_create -o CMakeFiles/cmTC_e19fa.dir/CheckFunctionExists.c.o -c /usr/share/cmake-3.6/Modules/CheckFunctionExists.c
  44. Linking C executable cmTC_e19fa
  45. /usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e19fa.dir/link.txt --verbose=1
  46. /usr/bin/cc -I/usr/local/kodi/git-20161106-0035/include/ -DCHECK_FUNCTION_EXISTS=pthread_create -L/usr/local/kodi/git-20161106-0035/lib/ CMakeFiles/cmTC_e19fa.dir/CheckFunctionExists.c.o -o cmTC_e19fa -rdynamic -lpthreads
  47. /usr/bin/ld: cannot find -lpthreads
  48. collect2: error: ld returned 1 exit status
  49. CMakeFiles/cmTC_e19fa.dir/build.make:97: polecenia dla obiektu 'cmTC_e19fa' nie powiodły się
  50. make[1]: *** [cmTC_e19fa] Błąd 1
  51. make[1]: Opuszczenie katalogu '/usr/src/kodi/build-20161106-0035/kodi_build/CMakeFiles/CMakeTmp'
  52. Makefile:126: polecenia dla obiektu 'cmTC_e19fa/fast' nie powiodły się
  53. make: *** [cmTC_e19fa/fast] Błąd 2
Add Comment
Please, Sign In to add comment