diff --git a/collector/src/compile/execute/rustc.rs b/collector/src/compile/execute/rustc.rs index fd542482f..c2cc3756f 100644 --- a/collector/src/compile/execute/rustc.rs +++ b/collector/src/compile/execute/rustc.rs @@ -98,6 +98,9 @@ async fn record( "build.cargo={}", toolchain.components.cargo.to_str().unwrap() )) + // Do not compile all default tools + .arg("--set") + .arg("build.extended=false") .status() .context("configuring")?; assert!(status.success(), "configure successful");