-
Notifications
You must be signed in to change notification settings - Fork 39
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
eigenpy version set to 0.0.0 while forgetting --recursive option #405
Comments
and thanks for the amazing work ! This issue filling is mostly to document this unfortunate behavior and saving time for other users. |
Closing in favor of jrl-umi3218/jrl-cmakemodules#640 If this is not enough, I'll reopen. |
This was referenced Nov 22, 2023
Thanks for taking care of this @nim65s |
I can confirm that following the merge of jrl-umi3218/jrl-cmakemodules#641, I can no longer reproduce this issue with this Dockerfile: FROM ros:rolling
RUN --mount=type=cache,sharing=locked,target=/var/cache/apt \
--mount=type=cache,sharing=locked,target=/var/lib/apt \
apt-get update -y && DEBIAN_FRONTEND=noninteractive apt-get install -qqy --no-install-recommends \
libboost-all-dev \
libeigen3-dev \
liburdfdom-dev \
libtinyxml-dev \
python-is-python3
WORKDIR /tmp/test_ws/src
RUN git clone https://github.com/stack-of-tasks/eigenpy
WORKDIR /tmp/test_ws
RUN colcon build --merge-install --packages-select eigenpy
WORKDIR /tmp/test_ws/src
RUN git clone --recursive https://github.com/stack-of-tasks/pinocchio
WORKDIR /tmp/test_ws
ENV MAKEFLAGS="-j 4"
RUN colcon build --merge-install --packages-select pinocchio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Symptoms
Pinocchio not compiling generating a mistake stating that eigenpy does not have the proper version.
The system detects a 0.0.0 version for eigenpy.
Steps to reproduce the bug
On a 22.04 LTS :
Output:
Of course putting the recursive flag when cloning eigenpy is fixing the matter. So there is no urgency in this matter.
Unfortunately it means that the lines
eigenpy/CMakeLists.txt
Line 24 in 2a86f64
eigenpy/CMakeLists.txt
Line 30 in 2a86f64
are not working properly.
To be honest, I would prefer the error in
eigenpy/CMakeLists.txt
Line 20 in 2a86f64
I guess that you did it for a good reason, unfortunately i did not have time to investigate why the former lines are not working properly.
The text was updated successfully, but these errors were encountered: