about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2022-05-20 08:54:10 -0400
committerMark Rousskov <mark.simulacrum@gmail.com>2022-05-27 07:36:17 -0400
commitb454991ac4eef89480679f595cbe81e0d5e23262 (patch)
tree8bea6122df07ce3dc72bd5733b2bff389a17c7d1 /src/bootstrap
parent46147119ec545045948bc799581d93edd3b1617b (diff)
downloadrust-b454991ac4eef89480679f595cbe81e0d5e23262.tar.gz
rust-b454991ac4eef89480679f595cbe81e0d5e23262.zip
Finish bumping stage0
It looks like the last time had left some remaining cfg's -- which made me think
that the stage0 bump was actually successful. This brings us to a released 1.62
beta though.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/builder.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
index 0fb66e56a8c..8a7cb4b97d5 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -1440,9 +1440,7 @@ impl<'a> Builder<'a> {
             },
         );
 
-        // FIXME(davidtwco): #[cfg(not(bootstrap))] - #95612 needs to be in the bootstrap compiler
-        // for this conditional to be removed.
-        if !target.contains("windows") || compiler.stage >= 1 {
+        if !target.contains("windows") {
             let needs_unstable_opts = target.contains("linux")
                 || target.contains("windows")
                 || target.contains("bsd")