mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-28 11:20:36 +00:00
7 lines
118 B
Rust
7 lines
118 B
Rust
fn main() {
|
|
println!(
|
|
"cargo:rustc-env=NATIVE_ARCH={}",
|
|
std::env::var("TARGET").unwrap()
|
|
);
|
|
}
|