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 2de8180 commit b8127c7Copy full SHA for b8127c7
crates/find_cuda_helper/src/lib.rs
@@ -130,6 +130,7 @@ pub fn find_cuda_lib_dirs() -> Vec<PathBuf> {
130
for e in glob::glob("/usr/local/cuda-*").unwrap().flatten() {
131
candidates.push(e)
132
}
133
+ candidates.push(PathBuf::from("/usr/lib/cuda"));
134
135
let mut valid_paths = vec![];
136
for base in &candidates {
0 commit comments