Skip to content

Commit ac7765d

Browse files
jorge-ortegaLegNeato
authored andcommitted
Remove redundant cargo instructions.
`cc` already sets rustc-link-search and rustc-link-lib after compiling. Since other rerun-if-changed instructions are emitted, specifying build.rs is redudant.
1 parent ed04a9d commit ac7765d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

crates/optix/build.rs

-9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use find_cuda_helper::{find_cuda_root, find_optix_root};
2-
use std::env;
32
use std::path::{Path, PathBuf};
43

54
// OptiX is a bit exotic in how it provides its functions. It uses a function table
@@ -8,7 +7,6 @@ use std::path::{Path, PathBuf};
87
// OptiX provides this logic inside optix_stubs.h in the include dir, so we need to compile that
98
// to a lib and link it in so that we have the initialization and C function logic.
109
fn main() {
11-
let out_dir = env::var("OUT_DIR").unwrap();
1210
let mut optix_include = find_optix_root().expect(
1311
"Unable to find the OptiX SDK, make sure you installed it and
1412
that OPTIX_ROOT or OPTIX_ROOT_DIR are set",
@@ -30,9 +28,6 @@ fn main() {
3028
.include(cuda_include)
3129
.cpp(false)
3230
.compile("optix_stubs");
33-
34-
println!("cargo:rustc-link-search=native={}", out_dir);
35-
println!("cargo:rustc-link-lib=static=optix_stubs");
3631
}
3732

3833
fn bindgen_optix(optix_include: &Path, cuda_include: &Path) {
@@ -42,11 +37,7 @@ fn bindgen_optix(optix_include: &Path, cuda_include: &Path) {
4237
.join("src")
4338
.join("optix_wrapper.h");
4439

45-
let this_path =
46-
std::path::PathBuf::from(std::env::var("CARGO_MANIFEST_DIR").unwrap()).join("build.rs");
47-
4840
println!("cargo:rerun-if-changed={}", header_path.display());
49-
println!("cargo:rerun-if-changed={}", this_path.display());
5041

5142
let bindings = bindgen::Builder::default()
5243
.header("src/optix_wrapper.h")

0 commit comments

Comments
 (0)