I'm using Boost-1.58.0, and g++-4.8.2 (Ubuntu 14.04), and having the same issue.
The solution is to remove "-Werror" (treat warning as error) in Release/src/CMakelist.txt:53 into:
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNINGS} -pedantic")
Just posting this to let anyone who stumbles on the same issue knows
The solution is to remove "-Werror" (treat warning as error) in Release/src/CMakelist.txt:53 into:
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${WARNINGS} -pedantic")
Just posting this to let anyone who stumbles on the same issue knows