We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 114f814 commit 9529b19Copy full SHA for 9529b19
miri-script/src/commands.rs
@@ -37,7 +37,10 @@ impl MiriEnv {
37
Err(_) => vec![],
38
};
39
if !quiet {
40
- eprintln!("$ (building Miri sysroot)");
+ match self.sh.var("MIRI_TEST_TARGET") {
41
+ Ok(target) => eprintln!("$ (building Miri sysroot for {target})"),
42
+ Err(_) => eprintln!("$ (building Miri sysroot)"),
43
+ }
44
}
45
let output = cmd!(self.sh,
46
"cargo +{toolchain} --quiet run {cargo_extra_flags...} --manifest-path {manifest_path} --
0 commit comments