You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
building stage_ros in a Debian Wheezy/Jessie/Unstable we have found that it fails because the -ldl of a link to libdl is missed. After dig a bit on the net and test it, I found that it's a problem with the order of the link procedure.
So, in stage_ros/CMakeLists.txt instead of add set(${PROJECT_NAME}_extra_libs dl) just change the order of:
Thanks for the report. Other systems like OS X have a similar issue, but I think the right thing to do is to conditionally not add dl as is done for OS X here:
Hi,
building
stage_ros
in a Debian Wheezy/Jessie/Unstable we have found that it fails because the-ldl
of a link tolibdl
is missed. After dig a bit on the net and test it, I found that it's a problem with the order of the link procedure.So, in
stage_ros/CMakeLists.txt
instead of addset(${PROJECT_NAME}_extra_libs dl)
just change the order of:by:
and it compiles without problem.
The text was updated successfully, but these errors were encountered: