diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2017-11-29 12:14:03 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2017-11-29 21:11:20 -0800 |
| commit | a850bb0e5d07212ae716f447f3f69f6e4ce467da (patch) | |
| tree | 2915b18366da7635096986b24d0cf97739f1fd56 /src/bootstrap | |
| parent | 78fcf338833bd265c7f8dd1e46caf02b66039bb8 (diff) | |
| download | rust-a850bb0e5d07212ae716f447f3f69f6e4ce467da.tar.gz rust-a850bb0e5d07212ae716f447f3f69f6e4ce467da.zip | |
Update bootstrap compiler
Also remove a number of `stage0` annotations and such
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/bin/rustc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/bin/rustc.rs b/src/bootstrap/bin/rustc.rs index 8325b1d2a27..631c9f72f35 100644 --- a/src/bootstrap/bin/rustc.rs +++ b/src/bootstrap/bin/rustc.rs @@ -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"); } |
