Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.29 KB | None | 0 0
  1. mkdir -p build/release
  2. cd build/release && cmake -D CMAKE_BUILD_TYPE=Release ../..
  3. -- The C compiler identification is GNU 6.3.0
  4. -- The CXX compiler identification is GNU 6.3.0
  5. -- Check for working C compiler: /usr/bin/cc
  6. -- Check for working C compiler: /usr/bin/cc -- works
  7. -- Detecting C compiler ABI info
  8. -- Detecting C compiler ABI info - done
  9. -- Detecting C compile features
  10. -- Detecting C compile features - done
  11. -- Check for working CXX compiler: /usr/bin/c++
  12. -- Check for working CXX compiler: /usr/bin/c++ -- works
  13. -- Detecting CXX compiler ABI info
  14. -- Detecting CXX compiler ABI info - done
  15. -- Detecting CXX compile features
  16. -- Detecting CXX compile features - done
  17. -- Looking for pthread.h
  18. -- Looking for pthread.h - not found
  19. CMake Error at /usr/share/cmake-3.7/Modules/FindPackageHandleStandardArgs.cmake:138 (message):
  20. Could NOT find Threads (missing: Threads_FOUND)
  21. Call Stack (most recent call first):
  22. /usr/share/cmake-3.7/Modules/FindPackageHandleStandardArgs.cmake:378 (_FPHSA_FAILURE_MESSAGE)
  23. /usr/share/cmake-3.7/Modules/FindThreads.cmake:212 (FIND_PACKAGE_HANDLE_STANDARD_ARGS)
  24. /usr/share/cmake-3.7/Modules/CMakeFindDependencyMacro.cmake:55 (find_package)
  25. /usr/share/cmake-3.7/Modules/FindBoost.cmake:1476 (find_dependency)
  26. CMakeLists.txt:124 (find_package)
  27.  
  28.  
  29. -- Configuring incomplete, errors occurred!
  30. See also "/home/pi/cash2/build/release/CMakeFiles/CMakeOutput.log".
  31. See also "/home/pi/cash2/build/release/CMakeFiles/CMakeError.log".
  32. Makefile:18: recipe for target 'cmake-release' failed
  33. make: *** [cmake-release] Error 1
  34. ✘ pi@raspberrypi  ~/cash2   master 
  35. ✘ pi@raspberrypi  ~/cash2   master  find /lib -name "*pthread*"
  36. /lib/arm-linux-gnueabihf/libpthread-2.24.so
  37. /lib/arm-linux-gnueabihf/libpthread.so.0
  38. pi@raspberrypi  ~/cash2   master 
  39. ✘ pi@raspberrypi  ~/cash2   master  vim /usr/share/cmake-3.7/Modules/FindPackageHandleStandardArgs.cmake
  40. pi@raspberrypi  ~/cash2   master  cat build/release/CMakeFiles/CMakeError.log
  41. Determining if the include file pthread.h exists failed with the following output:
  42. Change Dir: /home/pi/cash2/build/release/CMakeFiles/CMakeTmp
  43.  
  44. Run Build Command:"/usr/bin/make" "cmTC_2845b/fast"
  45. make[1]: Entering directory '/home/pi/cash2/build/release/CMakeFiles/CMakeTmp'
  46. /usr/bin/make -f CMakeFiles/cmTC_2845b.dir/build.make CMakeFiles/cmTC_2845b.dir/build
  47. make[2]: Entering directory '/home/pi/cash2/build/release/CMakeFiles/CMakeTmp'
  48. Building C object CMakeFiles/cmTC_2845b.dir/CheckIncludeFile.c.o
  49. /usr/bin/cc -std=c11 -Wall -Wextra -Wpointer-arith -Wundef -Wvla -Wwrite-strings -Werror -Wno-error=extra -Wno-error=unused-function -Wno-error=deprecated-declarations -Wno-error=sign-compare -Wno-error=strict-aliasing -Wno-error=type-limits -Wno-unused-parameter -Wno-error=unused-variable -Wno-error=undef -Wno-
  50. error=uninitialized -Wno-error=unused-result -Wno-error=implicit-fallthrough -Wno-error=logical-op -Wno-error=terminate -Wno-error=stringop-overflow -Wno-error=unused-const-variable -Wno-error=address -Wno-error=format-truncation -Wlogical-op -Wno-error=maybe-uninitialized -Wno-error=clobbered -Wno-error=unused-but-
  51. set-variable -Wno-error=odr -Waggregate-return -Wnested-externs -Wold-style-definition -Wstrict-prototypes -march=native -maes -o CMakeFiles/cmTC_2845b.dir/CheckIncludeFile.c.o -c /home/pi/cash2/build/release/CMakeFiles/CMakeTmp/CheckIncludeFile.c
  52. cc: error: unrecognized command line option ‘-maes’; did you mean ‘-mapcs’?
  53. CMakeFiles/cmTC_2845b.dir/build.make:65: recipe for target 'CMakeFiles/cmTC_2845b.dir/CheckIncludeFile.c.o' failed
  54. make[2]: *** [CMakeFiles/cmTC_2845b.dir/CheckIncludeFile.c.o] Error 1
  55. make[2]: Leaving directory '/home/pi/cash2/build/release/CMakeFiles/CMakeTmp'
  56. Makefile:126: recipe for target 'cmTC_2845b/fast' failed
  57. make[1]: *** [cmTC_2845b/fast] Error 2
  58. make[1]: Leaving directory '/home/pi/cash2/build/release/CMakeFiles/CMakeTmp'
  59.  
  60.  
  61. pi@raspberrypi  ~/cash2   master  cat /proc/cpuinfo
  62. processor : 0
  63. model name : ARMv7 Processor rev 4 (v7l)
  64. BogoMIPS : 89.60
  65. Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
  66. CPU implementer : 0x41
  67. CPU architecture: 7
  68. CPU variant : 0x0
  69. CPU part : 0xd03
  70. CPU revision : 4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement