You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some users of RustaCUDA have found that setting CUDA_LIBRARY_PATH isn't sufficient to allow them to build cuda-sys: bheisler/RustaCUDA#15
I ran into a similar problem while setting up my Travis-CI builds for RustaCUDA on an Ubuntu VM which might be related. If I set CUDA_LIBRARY_PATH to /usr/local/cuda-8.0/targets/x86_64-linux/lib, it could find libcublas.so and libcudart.so but not libcuda.so (which is in /usr/local/cuda-8.0/targets/x86_64-linux/lib/stubs for some reason).
The text was updated successfully, but these errors were encountered:
Changing the path that the GCC linker searches for includes and libraries - that seems like a pretty big hammer. I'd prefer to figure out why CUDA_LIBRARY_PATH doesn't work and fix cuda-sys, if possible.
Some users of RustaCUDA have found that setting CUDA_LIBRARY_PATH isn't sufficient to allow them to build cuda-sys: bheisler/RustaCUDA#15
I ran into a similar problem while setting up my Travis-CI builds for RustaCUDA on an Ubuntu VM which might be related. If I set CUDA_LIBRARY_PATH to
/usr/local/cuda-8.0/targets/x86_64-linux/lib
, it could findlibcublas.so
andlibcudart.so
but notlibcuda.so
(which is in/usr/local/cuda-8.0/targets/x86_64-linux/lib/stubs
for some reason).The text was updated successfully, but these errors were encountered: