-
-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
moveit_core exports liboctomap.so.1.9.7 as link dependency, but 1.9.8 is installed #318
Comments
Hi @alaurenzi , thanks for the report! Just to double check, can you try installing mamba install octomap==1.9.7 and see if then that works? Clearly this is just a workaround. |
What do you think the issue is @traversaro? They set the SOVERSION correctly to minor, but somehow down stream links to the patch version .. |
Yes, I was looking at this as well. |
Indeed this works (meanwhile I switched to Mambaforge but I don't believe it makes any difference) mamba create -n ros_env python=3.9
mamba activate ros_env
conda config --env --add channels robostack
mamba install ros-noetic-desktop-full ros-noetic-moveit-core octomap=1.9.7 |
I looked a bit into it. I think the problem is that when
The value used is the one in I think the upstream issue that tracks this is ros/catkin#1141, there is also an unmerged PR in ros/catkin#1142 that we could import in robostack. |
I tested ros/catkin#1142 and it works fine to avoid the problem. |
Backport ros/catkin#1142 Fix RoboStack#318
Backport ros/catkin#1142 Fix #318
Hi all, let me first thank you for this huge effort!
I am trying to install ROS1 inside a conda environment, on top of which I want to build some custom source code.
I have successfully installed
ros-noetic-desktop-full
, andros-noetic-moveit-core
.The problem I am experiencing is the following. The cmake files exported by
moveit_core
includeliboctomap.so.1.9.7
as link dependency:However, version
1.9.8
seems to be installed:Leading to linking errors when I try to compile my own source code, that is supposed to link against moveit, and therefore against the non-existing
liboctomap.so.1.9.7
.Output of
conda list
:Thank you in advance for you kind attention,
Arturo
The text was updated successfully, but these errors were encountered: