For run-coverage tests, build rust-demangler with the stage 0 compiler

This avoids useless rebuilds of the demangler when modifying the compiler.
This commit is contained in:
Zalathar 2023-10-25 22:33:40 +11:00
parent be0d73afec
commit 36c3f90173

View File

@ -1568,9 +1568,11 @@ fn run(self, builder: &Builder<'_>) {
} }
if mode == "run-coverage" { if mode == "run-coverage" {
// The demangler doesn't need the current compiler, so we can avoid
// unnecessary rebuilds by using the bootstrap compiler instead.
let rust_demangler = builder let rust_demangler = builder
.ensure(tool::RustDemangler { .ensure(tool::RustDemangler {
compiler, compiler: compiler.with_stage(0),
target: compiler.host, target: compiler.host,
extra_features: Vec::new(), extra_features: Vec::new(),
}) })