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 7155ede commit 6a95136Copy full SHA for 6a95136
collector/src/bootstrap-rustc.rs
@@ -6,7 +6,7 @@ fn run() -> i32 {
6
let server = Client::new(num_cpus::get()).expect("made jobserver");
7
8
let mut cmd = Command::new(env::var_os("RUSTC_PERF_REAL_RUSTC").unwrap());
9
- cmd.args(env::args_os());
+ cmd.args(env::args_os().skip(1));
10
11
// We want the bootstrap rustc to have access to full parallelism, even
12
// though the parent cargo is permitted to spawn at most one rustc (-j1).
collector/src/execute/rustc.rs
@@ -88,6 +88,7 @@ fn record(
88
.context("x.py script canonicalize")?,
89
)
90
.current_dir(&checkout)
91
+ .env("RUSTC_PERF_REAL_RUSTC", &compiler.rustc)
92
.arg("build")
93
.arg("--stage")
94
.arg("0")
0 commit comments