Skip to content

Commit

Permalink
more logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleconroy committed Jun 11, 2024
1 parent ae18f29 commit feb1ff7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,8 @@ fn maybe_make_cpython(repo_dir: &Path, wasi_sdk: &Path) -> Result<()> {
run(Command::new("make")
.current_dir(&cpython_wasi_dir)
.arg("install"))?;
} else {
println!("using existing libpython3.12.a");
}

run(Command::new(wasi_sdk.join("bin/clang"))
Expand All @@ -321,6 +323,8 @@ fn maybe_make_cpython(repo_dir: &Path, wasi_sdk: &Path) -> Result<()> {
.arg(cpython_wasi_dir.join("Modules/_hacl/libHacl_Hash_SHA2.a"))
.arg(cpython_wasi_dir.join("Modules/_decimal/libmpdec/libmpdec.a"))
.arg(cpython_wasi_dir.join("Modules/expat/libexpat.a")))?;
} else {
println!("using existing libpython3.12.so");
}

Ok(())
Expand Down

0 comments on commit feb1ff7

Please sign in to comment.