-
Notifications
You must be signed in to change notification settings - Fork 148
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
catkin build does not follow symlinks properly #182
Comments
Is this a duplicate of #91? |
Can someone elaborate on how to resolve this? I also am running a guest Ubuntu Virtual Machine that symbolically links to a host windows machine.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I am working on OSX with ROS, but some packages can't compile there due to drivers that aren't available. For that reason, I am also using ubuntu in a virtual machine. To reduce duplication, I symbolically linked the
src
folder from OSX to the ubuntu guest machine. In that way, source code is the same in OSX and in ubuntu but both OS's have their ownbuild
anddevel
folder. Runningcatkin build
in ubuntu somewhere inside the symlinked folder will try to erroneously use the build/devel from OSX, which is incompatible with the ubuntu version and will fail.Long story short: running
catkin build
in/home/hgaiser/catkin_ws/src<symlinked>/some_package
(where src is a symlink to/media/psf/Home/catkin_ws/src
) is equal tocd /media/psf/Home/catkin_ws && catkin build
, which doesn't work.The text was updated successfully, but these errors were encountered: