Update bootstrap compiler

Also remove a number of `stage0` annotations and such
This commit is contained in:
Alex Crichton 2017-11-29 12:14:03 -08:00
parent 78fcf33883
commit a850bb0e5d
13 changed files with 66 additions and 289 deletions

View file

@ -175,7 +175,7 @@ fn main() {
if let Ok(s) = env::var("RUSTC_CODEGEN_UNITS") {
cmd.arg("-C").arg(format!("codegen-units={}", s));
}
if stage != "0" && env::var("RUSTC_THINLTO").is_ok() {
if env::var("RUSTC_THINLTO").is_ok() {
cmd.arg("-Ccodegen-units=16").arg("-Zthinlto");
}