diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs index eb534cb685e87..79167b1fd5e27 100644 --- a/src/bootstrap/builder.rs +++ b/src/bootstrap/builder.rs @@ -903,10 +903,7 @@ impl<'a> Builder<'a> { .env("RUSTC_SNAPSHOT_LIBDIR", self.rustc_libdir(compiler)); } - // Ignore incremental modes except for stage0, since we're - // not guaranteeing correctness across builds if the compiler - // is changing under your feet.` - if self.config.incremental && compiler.stage == 0 { + if self.config.incremental { cargo.env("CARGO_INCREMENTAL", "1"); }