Skip to content

Commit

Permalink
Auto merge of #3105 - RalfJung:sysroot-target, r=RalfJung
Browse files Browse the repository at this point in the history
miri-script: print which sysroot target we are building
  • Loading branch information
bors committed Oct 4, 2023
2 parents 448452d + 9529b19 commit f95fb21
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion miri-script/src/commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ impl MiriEnv {
Err(_) => vec![],
};
if !quiet {
eprintln!("$ (building Miri sysroot)");
match self.sh.var("MIRI_TEST_TARGET") {
Ok(target) => eprintln!("$ (building Miri sysroot for {target})"),
Err(_) => eprintln!("$ (building Miri sysroot)"),
}
}
let output = cmd!(self.sh,
"cargo +{toolchain} --quiet run {cargo_extra_flags...} --manifest-path {manifest_path} --
Expand Down

0 comments on commit f95fb21

Please sign in to comment.