about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2017-12-02 05:21:58 +0000
committerbors <bors@rust-lang.org>2017-12-02 05:21:58 +0000
commitc3942e751cd290394d5b0c4d11e695141494edd5 (patch)
tree17560d9e890cb61303bdf0d973c4912a331cf050 /src/bootstrap
parentb15a8eafcd7e50af116d398c1ac3c5a0504c0270 (diff)
parenta850bb0e5d07212ae716f447f3f69f6e4ce467da (diff)
downloadrust-c3942e751cd290394d5b0c4d11e695141494edd5.tar.gz
rust-c3942e751cd290394d5b0c4d11e695141494edd5.zip
Auto merge of #46288 - alexcrichton:bump-bootstrap, r=Mark-Simulacrum
Bump to 1.24.0

* Update the in-tree version number
* Update the bootstrap compiler
* Remove `cfg(stage0)` annotations
* Update crate dependencies
* Update Cargo itself
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/bin/rustc.rs2
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");
         }