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 a8e4c68 commit 77c58bdCopy full SHA for 77c58bd
src/bootstrap/src/core/build_steps/perf.rs
@@ -1,3 +1,4 @@
1
+use std::env::consts::EXE_EXTENSION;
2
use std::fmt::{Display, Formatter};
3
4
use crate::core::build_steps::compile::{Std, Sysroot};
@@ -160,7 +161,8 @@ Consider setting `rust.debuginfo-level = 1` in `bootstrap.toml`."#);
160
161
}
162
163
let sysroot = builder.ensure(Sysroot::new(compiler));
- let rustc = sysroot.join("bin/rustc");
164
+ let mut rustc = sysroot.join("bin/rustc");
165
+ rustc.set_extension(EXE_EXTENSION);
166
167
let rustc_perf_dir = builder.build.tempdir().join("rustc-perf");
168
let results_dir = rustc_perf_dir.join("results");
0 commit comments