You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

6 lines
265 B

fn main() {
// wasi-common's links & build.rs ensure this variable points to the wasi root:
let wasi_root = std::env::var("DEP_WASI_COMMON_19_WASI").unwrap();
// Make it available as WASI_ROOT:
println!("cargo:rustc-env=WASI_ROOT={}", wasi_root);
}