-
Notifications
You must be signed in to change notification settings - Fork 278
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
fix clash error with tf test name #465
Conversation
received this error during compilation from source of noetic:
|
Is there a reason why this is closed? Fyi, I am trying to install this pkg on ubuntu22.04 from source, and it is proven that this fix works. I can reopen a similar ticket that addresses this. |
This was closed by the original author. It's not clear how to reproduce. Test target names generally shouldn't collide with other packages. |
It always happen on every Ubuntu20.04 machine when I try to build ROS Noetic from source using catkin_make. It is weird why this PR was closed |
@Jeffxzj can you please provide reproduction instructions? |
Yes, you can reproduce this error when installing ROS Noetic from source using # Installing bootstrap dependencies
sudo apt-get install python3-rosdep python3-rosinstall-generator python3-vcstools python3-vcstool build-essential
# Initializing rosdep
sudo rosdep init
rosdep update
# create workspace and download source code
mkdir ~/ros_catkin_ws
cd ~/ros_catkin_ws
rosinstall_generator desktop --rosdistro noetic --deps --tar > noetic-desktop.rosinstall
mkdir ./src
vcs import --input noetic-desktop.rosinstall ./src
# Resolving Dependencies
rosdep install --from-paths ./src --ignore-packages-from-source --rosdistro noetic -y
# build
./src/catkin/bin/catkin_make --cmake-args -DCMAKE_BUILD_TYPE=Release Then, you will get the same error in this issue. Hope these instructions will help you. |
Ahh, you're using Use |
No description provided.