ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
@William had a good answer here: https://answers.ros.org/question/206363/rqt-plugin-undefined-symbol/
By default, the linker doesn't check that shared libraries are linked correctly, so it doesn't display much useful information upon failure. You can change that by setting the linker flag:
set(CMAKE_CXX_FLAGS "-Wl,--no-undefined")
Then you should get much more detailed error messages.