Skip to content

Commit 6b02ab2

Browse files
committed
Do not compile extended tools in bootstrap benchmark
1 parent 8a9b364 commit 6b02ab2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

collector/src/compile/execute/rustc.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,9 @@ async fn record(
9898
"build.cargo={}",
9999
toolchain.components.cargo.to_str().unwrap()
100100
))
101+
// Do not compile all default tools
102+
.arg("--set")
103+
.arg("build.extended=false")
101104
.status()
102105
.context("configuring")?;
103106
assert!(status.success(), "configure successful");

0 commit comments

Comments
 (0)