Skip to content

Instantly share code, notes, and snippets.

@glhr
Created September 20, 2019 13:14
Show Gist options
  • Save glhr/5622057692e4cfd2cae8302e6eb3d502 to your computer and use it in GitHub Desktop.
Save glhr/5622057692e4cfd2cae8302e6eb3d502 to your computer and use it in GitHub Desktop.
fixing "*** No rule to make target '/usr/local/cuda-10.1/lib64/libcublas.so'" error when compiling zed-ros-wrapper

Create a symbolic link pointing from /usr/local/cuda-10.1/lib64/libcublas.so to the actual file:

sudo ln -s /usr/local/cuda-10.0/targets/x86_64-linux/lib/libcublas.so /usr/local/cuda-10.1/lib64/libcublas.so

Note: use sudo find / -name "libcublas.so" to find the correct file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment