mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
8 lines
283 B
Rust
8 lines
283 B
Rust
fn main() {
|
|
// Forward the profile to the main compilation
|
|
println!("cargo:rustc-env=PROFILE={}", std::env::var("PROFILE").unwrap());
|
|
// Don't rebuild even if nothing changed
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
rustc_tools_util::setup_version_info!();
|
|
}
|