unordered_set.hpp no such file or directory
I'm trying to build ROS for a raspberry pi; however, I keep getting an error
boost/tr1/unordered_set.hpp: No such file or directory
#include <boost/tr1/unordered_set.hpp>
I tried installing libboost, but it says that it's already at the latest version. Is there something I am missing?
Asked by Corey on 2019-09-12 10:18:57 UTC
Answers
if you are using MacOS, you can brew install install boost@1.59, and then you ./src/catkin/bin/catkin_make_isolated --install -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_RPATH=$HOME/ros_catkin_ws/install_isolated/lib --from-pkg roscpp --cmake-args -DBOOST_ROOT=/usr/local/opt/boost@1.59 if have error that boost version <1.61, you can change the version 106100 into 105900 in error cpp file because boost version 1.59's directionary is different from newest.
Asked by Hu ZeShuang on 2020-04-30 00:06:13 UTC
Comments