@@ -84,7 +84,10 @@ impl Step for Std {
84
84
) ;
85
85
std_cargo ( builder, target, compiler. stage , & mut cargo) ;
86
86
87
- builder. info ( & format ! ( "Checking std artifacts ({} -> {})" , & compiler. host, target) ) ;
87
+ builder. info ( & format ! (
88
+ "Checking stage{} std artifacts ({} -> {})" ,
89
+ builder. top_stage, & compiler. host, target
90
+ ) ) ;
88
91
run_cargo (
89
92
builder,
90
93
cargo,
@@ -128,8 +131,8 @@ impl Step for Std {
128
131
}
129
132
130
133
builder. info ( & format ! (
131
- "Checking std test/bench/example targets ({} -> {})" ,
132
- & compiler. host, target
134
+ "Checking stage{} std test/bench/example targets ({} -> {})" ,
135
+ builder . top_stage , & compiler. host, target
133
136
) ) ;
134
137
run_cargo (
135
138
builder,
@@ -201,7 +204,10 @@ impl Step for Rustc {
201
204
cargo. arg ( "-p" ) . arg ( krate. name ) ;
202
205
}
203
206
204
- builder. info ( & format ! ( "Checking compiler artifacts ({} -> {})" , & compiler. host, target) ) ;
207
+ builder. info ( & format ! (
208
+ "Checking stage{} compiler artifacts ({} -> {})" ,
209
+ builder. top_stage, & compiler. host, target
210
+ ) ) ;
205
211
run_cargo (
206
212
builder,
207
213
cargo,
@@ -258,8 +264,8 @@ impl Step for CodegenBackend {
258
264
rustc_cargo_env ( builder, & mut cargo, target) ;
259
265
260
266
builder. info ( & format ! (
261
- "Checking {} artifacts ({} -> {})" ,
262
- backend, & compiler. host. triple, target. triple
267
+ "Checking stage{} {} artifacts ({} -> {})" ,
268
+ builder . top_stage , backend, & compiler. host. triple, target. triple
263
269
) ) ;
264
270
265
271
run_cargo (
@@ -315,7 +321,8 @@ macro_rules! tool_check_step {
315
321
}
316
322
317
323
builder. info( & format!(
318
- "Checking {} artifacts ({} -> {})" ,
324
+ "Checking stage{} {} artifacts ({} -> {})" ,
325
+ builder. top_stage,
319
326
stringify!( $name) . to_lowercase( ) ,
320
327
& compiler. host. triple,
321
328
target. triple
0 commit comments