Commit 3875a142 authored by Sveinar Søpler's avatar Sveinar Søpler Committed by Vitaly Lipatov

nvcuda: Make nvcuda attempt to load libcuda.so.1

libcuda.so is not available when running under steam runtime container. Adding this will make nvcuda attempt to load libcuda.so.1 which will be available inside the steam runtime.
parent 58a634bc
......@@ -424,7 +424,8 @@ static BOOL load_functions(void)
"/usr/local/cuda/lib/libcuda.dylib",
"/usr/local/cuda/lib/libcuda.6.0.dylib",
#else
"libcuda.so"
"libcuda.so",
"libcuda.so.1"
#endif
};
int i;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment