File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -502,6 +502,13 @@ macro_rules! tool_check_step {
502
502
fn make_run( run: RunConfig <' _>) {
503
503
let target = run. target;
504
504
let build_compiler = prepare_compiler_for_check( run. builder, target, $mode) ;
505
+
506
+ // It doesn't make sense to cross-check bootstrap tools
507
+ if $mode == Mode :: ToolBootstrap && target != run. builder. host_target {
508
+ println!( "WARNING: not checking bootstrap tool {} for target {target} as it is a bootstrap (host-only) tool" , stringify!( $path) ) ;
509
+ return ;
510
+ } ;
511
+
505
512
run. builder. ensure( $name { target, build_compiler } ) ;
506
513
}
507
514
Original file line number Diff line number Diff line change @@ -1313,11 +1313,9 @@ mod snapshot {
1313
1313
[check] rustc 1 <host> -> Clippy 2 <target1>
1314
1314
[check] rustc 1 <host> -> Miri 2 <target1>
1315
1315
[check] rustc 1 <host> -> CargoMiri 2 <target1>
1316
- [check] rustc 0 <host> -> MiroptTestTools 1 <target1>
1317
1316
[check] rustc 1 <host> -> Rustfmt 2 <target1>
1318
1317
[check] rustc 1 <host> -> rust-analyzer 2 <target1>
1319
1318
[check] rustc 1 <host> -> TestFloatParse 2 <target1>
1320
- [check] rustc 0 <host> -> FeaturesStatusDump 1 <target1>
1321
1319
[check] rustc 1 <host> -> std 1 <target1>
1322
1320
" ) ;
1323
1321
}
You can’t perform that action at this time.
0 commit comments