-
Notifications
You must be signed in to change notification settings - Fork 4
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
Does not find versioned libraries #10
Comments
Workarounds: Either
or
i.e. libDir=/usr/local/cuda/lib64
for f in "$libDir/"*; do
[ -e "$f" ] || [ -L "$f" ] || continue
src="$(basename "$f" | grep "^lib.*.so.[[:digit:]]\+$")"
if [ -s "$libDir/$src" ] && [ ! -e "$libDir/${src%.*}" ]; then
ln -svT "$src" "$libDir/${src%.*}"
fi
done Ping @maleadt |
Should be fixed by e2c157b; can you try? I verified locally with a runtime container + cuda-cupti + cuda-nvcc + cuda-command-line-tools. FYI, it should be possible to make |
Confirmed.
🆗
Currently not required, because the C++ development toolchain is installed in a later [image build] stage anyway. |
Thanks for confirming. I'll tag a release. |
Discussion: JuliaGPU/CUDA.jl#2318
The text was updated successfully, but these errors were encountered: