Skip to content

Commit 1216cc4

Browse files
authored
Rollup merge of rust-lang#115103 - djkoloski:disable_bootstrap_version_check, r=compiler-errors
Disable bootstrap rustc version check Mitigates rust-lang#115065
2 parents f812a3f + 6aef5b3 commit 1216cc4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/bootstrap/config.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1276,7 +1276,8 @@ impl Config {
12761276
}
12771277

12781278
config.initial_rustc = if let Some(rustc) = build.rustc {
1279-
config.check_build_rustc_version(&rustc);
1279+
// FIXME(#115065): re-enable this check
1280+
// config.check_build_rustc_version(&rustc);
12801281
PathBuf::from(rustc)
12811282
} else {
12821283
config.download_beta_toolchain();

0 commit comments

Comments
 (0)