mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 06:28:20 +03:00
7 lines
154 B
Rust
7 lines
154 B
Rust
use std::env;
|
|
|
|
fn main() {
|
|
// Forward the profile to the main compilation
|
|
println!("cargo:rustc-env=PROFILE={}", env::var("PROFILE").unwrap());
|
|
}
|