We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b4237c commit f06c03cCopy full SHA for f06c03c
config/opal_check_cuda.m4
@@ -59,8 +59,8 @@ AC_ARG_WITH([cuda-libdir],
59
[Search for CUDA libraries in DIR])],
60
[],
61
[AS_IF([test -d "$with_cuda"],
62
- [with_cuda_libdir=$(dirname $(find $with_cuda -name libcuda.so 2> /dev/null) 2> /dev/null)],
63
- [with_cuda_libdir=$(dirname $(find /usr/local/cuda -name libcuda.so 2> /dev/null) 2> /dev/null)])
+ [with_cuda_libdir=$(dirname $(find -H $with_cuda -name libcuda.so 2> /dev/null) 2> /dev/null)],
+ [with_cuda_libdir=$(dirname $(find -H /usr/local/cuda -name libcuda.so 2> /dev/null) 2> /dev/null)])
64
])
65
66
# Note that CUDA support is off by default. To turn it on, the user has to
0 commit comments