1
Fork 0

Rollup merge of #115103 - djkoloski:disable_bootstrap_version_check, r=compiler-errors

Disable bootstrap rustc version check

Mitigates #115065
This commit is contained in:
Guillaume Gomez 2023-08-23 17:46:34 +02:00 committed by GitHub
commit b3949c0174
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();