diff options
| author | bors <bors@rust-lang.org> | 2023-03-01 06:23:19 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-03-01 06:23:19 +0000 |
| commit | bcb610da7fae8297689883782601ecb8645604e2 (patch) | |
| tree | 322f92893bf5d1856feab6d6ea44f308b0bea092 /src/bootstrap | |
| parent | 5983a3a99ea631da9d7d1ce510a6761913f92a89 (diff) | |
| parent | cd5352dbce21a71cad920c5e9efe9edfd6555147 (diff) | |
Auto merge of #108587 - matthiaskrgr:rollup-rw6po59, r=matthiaskrgr
Rollup of 10 pull requests Successful merges: - #108376 (compiler/rustc_session: fix sysroot detection logic) - #108400 (add llvm cgu instructions stats to perf) - #108496 (fix #108495, postfix decrement and prefix decrement has no warning) - #108505 (Further unify validity intrinsics) - #108520 (Small cleanup to `one_bound_for_assoc_type`) - #108560 (Some `infer/mod.rs` cleanups) - #108563 (Make mailmap more correct) - #108564 (Fix `x clean` with specific paths) - #108571 (Add contains_key to SortedIndexMultiMap) - #108578 (Update Fuchsia platform team members) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/clean.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bootstrap/clean.rs b/src/bootstrap/clean.rs index 468efc1114c..7ebd0a8f270 100644 --- a/src/bootstrap/clean.rs +++ b/src/bootstrap/clean.rs @@ -62,6 +62,7 @@ macro_rules! clean_crate_tree { let target = compiler.host; let mut cargo = builder.bare_cargo(compiler, $mode, target, "clean"); for krate in &*self.crates { + cargo.arg("-p"); cargo.arg(krate); } |
