Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/test-programs/build.rs
1690 views
1
fn main() {
2
println!("cargo:rerun-if-env-changed=WASI_SDK_PATH");
3
println!("cargo:rustc-link-arg-bin=dwarf_imported_memory=--import-memory");
4
println!("cargo:rustc-link-arg-bin=dwarf_imported_memory=--export-memory");
5
println!("cargo:rustc-link-arg-bin=dwarf_shared_memory=--no-check-features");
6
println!("cargo:rustc-link-arg-bin=dwarf_shared_memory=--shared-memory");
7
}
8
9