Skip to content

Commit

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

Disable bootstrap rustc version check

Mitigates #115065
  • Loading branch information
GuillaumeGomez authored Aug 23, 2023
2 parents c9dbff2 + 6aef5b3 commit b3949c0
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 b3949c0

Please sign in to comment.