forked from rust-lang/rustup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
30 lines (27 loc) · 1012 Bytes
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use std::env;
include!("src/dist/triple.rs");
fn from_build() -> Result<PartialTargetTriple, String> {
let triple = if let Ok(triple) = env::var("RUSTUP_OVERRIDE_BUILD_TRIPLE") {
triple
} else {
env::var("TARGET").unwrap()
};
PartialTargetTriple::new(&triple).ok_or(triple)
}
fn main() {
println!("cargo:rerun-if-env-changed=RUSTUP_OVERRIDE_BUILD_TRIPLE");
println!("cargo:rerun-if-env-changed=TARGET");
match from_build() {
Ok(triple) => eprintln!("Computed build based partial target triple: {:#?}", triple),
Err(s) => {
eprintln!("Unable to parse target '{}' as a PartialTargetTriple", s);
eprintln!(
"If you are attempting to bootstrap a new target you may need to adjust the\n\
permitted values found in src/dist/triple.rs"
);
std::process::abort();
}
}
let target = env::var("TARGET").unwrap();
println!("cargo:rustc-env=TARGET={}", target);
}