Skip to content

Commit

Permalink
Disable bootstrap rustc version check
Browse files Browse the repository at this point in the history
Mitigates #115065
  • Loading branch information
David Koloski committed Aug 22, 2023
1 parent d8c69df commit 6aef5b3
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 6aef5b3

Please sign in to comment.