Guest User

Untitled

a guest
Jul 28th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. Last metadata expiration check performed 1:27:21 ago on Thu Jul 28 15:01:40 2016.
  2. Package boost-1.57.0-6.fc22.x86_64 is already installed, skipping.
  3. Dependencies resolved.
  4. Nothing to do.
  5. Complete!
  6.  
  7. -- Detecting C compile features - done
  8. -- Build type not specified: defaulting to release.
  9. -- Found Git: /usr/bin/git (found version "2.4.11")
  10. -- Extracting version information from git describe...
  11. -- Configuring Boost C++ Libraries...
  12. -- Could NOT find Boost
  13. CMake Error at CMakeLists.txt:125 (message):
  14. Boost required to build gr-osmosdr
  15.  
  16. ########################################################################
  17. # Setup boost
  18. ########################################################################
  19. MESSAGE(STATUS "Configuring Boost C++ Libraries...")
  20.  
  21. # Although not required on my system, some users have linking issues without
  22. SET(BOOST_REQUIRED_COMPONENTS
  23. thread
  24. system
  25. )
  26.  
  27. if(UNIX AND NOT BOOST_ROOT AND EXISTS "/usr/lib64")
  28. list(APPEND BOOST_LIBRARYDIR "/usr/lib64") #fedora 64-bit fix
  29. endif(UNIX AND NOT BOOST_ROOT AND EXISTS "/usr/lib64")
  30.  
  31. set(Boost_ADDITIONAL_VERSIONS
  32. "1.35.0" "1.35" "1.36.0" "1.36" "1.37.0" "1.37" "1.38.0" "1.38" "1.39.0" "1.39"
  33. "1.40.0" "1.40" "1.41.0" "1.41" "1.42.0" "1.42" "1.43.0" "1.43" "1.44.0" "1.44"
  34. "1.45.0" "1.45" "1.46.0" "1.46" "1.47.0" "1.47" "1.48.0" "1.48" "1.49.0" "1.49"
  35. "1.50.0" "1.50" "1.51.0" "1.51" "1.52.0" "1.52" "1.53.0" "1.53" "1.54.0" "1.54"
  36. "1.55.0" "1.55" "1.56.0" "1.56" "1.57.0" "1.57" "1.58.0" "1.58" "1.59.0" "1.59"
  37. "1.60.0" "1.60" "1.61.0" "1.61" "1.62.0" "1.62" "1.63.0" "1.63" "1.64.0" "1.64"
  38. "1.65.0" "1.65" "1.66.0" "1.66" "1.67.0" "1.67" "1.68.0" "1.68" "1.69.0" "1.69"
  39. )
  40.  
  41. find_package(Boost COMPONENTS ${BOOST_REQUIRED_COMPONENTS})
  42.  
  43. if(NOT Boost_FOUND)
  44. message(FATAL_ERROR "Boost required to build " ${CMAKE_PROJECT_NAME})
  45. endif()
  46.  
  47. ADD_DEFINITIONS(-DBOOST_ALL_DYN_LINK)
Add Comment
Please, Sign In to add comment