mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-13 07:37:49 +00:00
6 lines
101 B
Rust
6 lines
101 B
Rust
use std::env;
|
|
|
|
fn main() {
|
|
println!("cargo:rustc-env=TARGET={}", env::var("TARGET").unwrap());
|
|
}
|