Skip to content

Commit c201681

Browse files
committed
Fix an error
1 parent 0137a86 commit c201681

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c/sedona-libgpuspatial/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ fn main() {
145145
println!("cargo:rustc-link-search=native={}", cuda_lib_path); // CUDA runtime
146146

147147
if let Some(driver_lib_path) = find_cuda_driver_path() {
148-
println!("cargo:rustc-link-search=native={}", cuda_lib_path); // CUDA driver
148+
println!("cargo:rustc-link-search=native={}", driver_lib_path); // CUDA driver
149149
} else {
150150
panic!("CUDA libcuda.so is not found. Please ensure NVIDIA drivers are installed and in a standard location, or set LD_LIBRARY_PATH or CUDA_HOME.");
151151
}

0 commit comments

Comments
 (0)