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.
Builder::fmt
1 parent fbfcfa6 commit df2da84Copy full SHA for df2da84
src/bootstrap/src/lib.rs
@@ -1130,11 +1130,12 @@ impl Build {
1130
let action = action.into().description();
1131
let msg = |fmt| format!("{action} stage{actual_stage} {what}{fmt}");
1132
let msg = if let Some(target) = target.into() {
1133
+ let build_stage = host_and_stage.stage;
1134
let host = host_and_stage.host;
1135
if host == target {
- msg(format_args!(" ({target})"))
1136
+ msg(format_args!(" (stage{build_stage} -> stage{actual_stage}, {target})"))
1137
} else {
- msg(format_args!(" ({host} -> {target})"))
1138
+ msg(format_args!(" (stage{build_stage}:{host} -> stage{actual_stage}:{target})"))
1139
}
1140
1141
msg(format_args!(""))
0 commit comments