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 e63fcbe commit bd4422bCopy full SHA for bd4422b
src/bootstrap/src/core/build_steps/perf.rs
@@ -161,9 +161,7 @@ Consider setting `rust.debuginfo-level = 1` in `bootstrap.toml`."#);
161
}
162
163
let sysroot = builder.ensure(Sysroot::new(compiler));
164
- let mut rustc = sysroot.clone();
165
- rustc.push("bin");
166
- rustc.push("rustc");
+ let mut rustc = sysroot.join("bin/rustc");
167
rustc.set_extension(EXE_EXTENSION);
168
169
let rustc_perf_dir = builder.build.tempdir().join("rustc-perf");
0 commit comments