ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

Instead of adjusting the rpath, I think it's easier to just sym-link all ros dylibs into a path already considered by your system. That's what I did and it seems to work:

cd ros_catkin_ws/install_isolated/lib
for n in *.dylib; do ln -s $PWD/$n /usr/local/lib/$n; done