Skip to content

Commit 88542ee

Browse files
authored
Merge pull request #2158 from Kobzol/bootstrap-disable-extended
Do not compile extended tools in bootstrap benchmark
2 parents ad756ef + 6b02ab2 commit 88542ee

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)