Skip to content

Commit

Permalink
remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
ynqa committed Nov 15, 2024
1 parent 08c85df commit 36a6883
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions j9-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,14 +81,6 @@ fn main() -> anyhow::Result<()> {
.build();

let lib_dir = out_dir.join("lib");
if let Ok(entries) = fs::read_dir(&lib_dir) {
for entry in entries {
if let Ok(entry) = entry {
println!("lib: {}", entry.path().display());
}
}
}

println!("cargo:rustc-link-search=native={}", lib_dir.display());
for lib in &["onig", "jq"] {
println!("cargo:rustc-link-lib=static={}", lib);
Expand Down

0 comments on commit 36a6883

Please sign in to comment.