summaryrefslogtreecommitdiffstats
path: root/src/tools/cargo/crates/cargo-test-support/build.rs
blob: 8854f461aa622eeea7cba26113ff61b4bc9e153d (plain)
1
2
3
4
5
6
7
8
9
#![allow(clippy::disallowed_methods)]

fn main() {
    println!(
        "cargo:rustc-env=NATIVE_ARCH={}",
        std::env::var("TARGET").unwrap()
    );
    println!("cargo:rerun-if-changed=build.rs");
}