1 2 3 4 5 6 7 8
//! Simple build script to pass through the target we are building. fn main() { println!( "cargo:rustc-env=TARGET={}", std::env::var("TARGET").unwrap() ); }