Skip to content

Commit b3949c0

Browse files
Rollup merge of #115103 - djkoloski:disable_bootstrap_version_check, r=compiler-errors
Disable bootstrap rustc version check Mitigates #115065
2 parents c9dbff2 + 6aef5b3 commit b3949c0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Diff for: 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)