aboutsummaryrefslogtreecommitdiff
path: root/build.rs
blob: ea31c783a4078fc38bd5f0625c35a09ce288eb09 (plain)
1
2
3
4
5
6
7
// Make target-triple used for build accessable in binary
fn main() {
    println!(
        "cargo:rustc-env=TARGET={}",
        std::env::var("TARGET").unwrap()
    );
}