Robotics StackExchange | Archived questions

Issues linking with standard file

Hey, I am new to ROS and I feel I may be having a trivial problem but I have been unable to find a solution online so far. However, when I command catkin_make I get the following error when linking the application

/home/brandon/catkin_ws/devel/lib/liblibplayercore.so: undefined reference to `lt_dlsym'
/home/brandon/catkin_ws/devel/lib/liblibplayercore.so: undefined reference to `lt_dlinit'
/home/brandon/catkin_ws/devel/lib/liblibplayercore.so: undefined reference to `lt_dlerror'
/home/brandon/catkin_ws/devel/lib/liblibplayercore.so: undefined reference to `lt_dlopenext'

and I am unsure what I am doing incorrectly. The about reference about of the libtool library which I feel is a pretty standard library. Is there something that I need to add to cmakelist to add standard libraries? Thanks

Asked by Brandon1995 on 2017-10-25 01:15:56 UTC

Comments

You're going to have to describe what it is you're trying to do here with a bit more detail, as it's hard to understand right now without any context.

What are you trying to compile? A node you wrote? A package you downloaded from somewhere? What platform/OS is this? Which version, how did you ..

Asked by gvdhoorn on 2017-10-25 02:25:57 UTC

.. install it (and ROS)? Please update your original question with any CMakeLists.txt you wrote as well.

Please use the edit button/link for that and also the Preformatted Text (101010) button for any code/console output.

Asked by gvdhoorn on 2017-10-25 02:26:50 UTC

Answers