Skip to content

Commit

Permalink
Rollup merge of rust-lang#115103 - djkoloski:disable_bootstrap_versio…
Browse files Browse the repository at this point in the history
…n_check, r=compiler-errors

Disable bootstrap rustc version check

Mitigates rust-lang#115065
  • Loading branch information
matthiaskrgr authored Aug 22, 2023
2 parents f812a3f + 6aef5b3 commit 1216cc4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bootstrap/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1276,7 +1276,8 @@ impl Config {
}

config.initial_rustc = if let Some(rustc) = build.rustc {
config.check_build_rustc_version(&rustc);
// FIXME(#115065): re-enable this check
// config.check_build_rustc_version(&rustc);
PathBuf::from(rustc)
} else {
config.download_beta_toolchain();
Expand Down

0 comments on commit 1216cc4

Please sign in to comment.