Review changes
This commit is contained in:
parent
151986f493
commit
f6f21a8f11
@ -27,7 +27,7 @@ pub fn perf(builder: &Builder<'_>) {
|
||||
let args = std::env::args().skip_while(|a| a != "--").skip(1);
|
||||
|
||||
let mut cmd = builder.tool_cmd(Tool::RustcPerfWrapper);
|
||||
cmd.env("PERF_RUSTC", rustc)
|
||||
cmd.env("RUSTC_REAL", rustc)
|
||||
.env("PERF_COLLECTOR", collector)
|
||||
.env("PERF_RESULT_DIR", profile_results_dir)
|
||||
.args(args);
|
||||
|
@ -1,3 +1,3 @@
|
||||
# rustc-perf wrapper
|
||||
Utility tool for invoking [`rustc-perf`](https://github.com/rust-lang/rustc-perf) for benchmarking/profiling
|
||||
a stage1/2 compiler built by bootstrap using `x run perf`.
|
||||
a stage1/2 compiler built by bootstrap using `x perf -- <command>`.
|
||||
|
@ -68,7 +68,7 @@ struct SharedOpts {
|
||||
#[derive(Debug, clap::Parser)]
|
||||
struct BuildContext {
|
||||
/// Compiler binary that will be benchmarked/profiled.
|
||||
#[clap(long, hide = true, env = "PERF_RUSTC")]
|
||||
#[clap(long, hide = true, env = "RUSTC_REAL")]
|
||||
compiler: PathBuf,
|
||||
/// rustc-perf collector binary that will be used for running benchmarks/profilers.
|
||||
#[clap(long, hide = true, env = "PERF_COLLECTOR")]
|
||||
|
Loading…
Reference in New Issue
Block a user