We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 220e713 commit 0efdac1Copy full SHA for 0efdac1
collector/src/compile/execute/rustc.rs
@@ -112,6 +112,9 @@ async fn record(
112
)
113
.current_dir(checkout)
114
.env("RUSTC_PERF_REAL_RUSTC", &toolchain.components.rustc)
115
+ // When overriding the stage0 compiler, we want to avoid bootstrap's target checks. See
116
+ // https://github.com/rust-lang/rust/pull/129651 for more details.
117
+ .env("BOOTSTRAP_SKIP_TARGET_SANITY", "1")
118
.arg("build")
119
.arg("--stage")
120
.arg("0")
0 commit comments