Skip to content

Commit

Permalink
fixup rust link library search path
Browse files Browse the repository at this point in the history
  • Loading branch information
emlowe committed Oct 30, 2024
1 parent ba55655 commit 1b93911
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions rust-bindings/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,7 @@ fn main() {

println!(
"cargo:rustc-link-search=native={}",
dst.join("build").to_str().unwrap()
);
println!(
"cargo:rustc-link-search=native={}",
dst.join("build")
.join("_deps")
.join("blake3-build")
.to_str()
.unwrap()
dst.join("build").join("lib").to_str().unwrap()
);

println!("cargo:rustc-link-lib=static=chiapos_static");
Expand Down

0 comments on commit 1b93911

Please sign in to comment.