rustc/vendor/compiletest_rs/build.rs
2021-05-14 18:42:13 +01:00

9 lines
237 B
Rust

use std::env;
pub fn main() {
if env::var("CARGO_FEATURE_RUSTC").is_err() {
println!("cargo:rustc-env=TARGET={}", env::var("TARGET").unwrap());
println!("cargo:rustc-env=HOST={}", env::var("HOST").unwrap());
}
}