You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of rust-lang#112512 - matthiaskrgr:rollup-o2jh1jx, r=matthiaskrgr
Rollup of 7 pull requests
Successful merges:
- rust-lang#112475 (Fix issue for module name when surround the struct literal with parentheses)
- rust-lang#112477 (Give more helpful progress messages in `Assemble`)
- rust-lang#112484 (Fix ntdll linkage issues on Windows UWP platforms)
- rust-lang#112492 (Migrate GUI colors test to original CSS color format)
- rust-lang#112493 (iat selection: normalize self ty & completely erase bound vars)
- rust-lang#112497 (abs_sub: fix typo 0[-:][+.]0)
- rust-lang#112498 (Update links to Rust Reference in diagnostic)
r? `@ghost`
`@rustbot` modify labels: rollup
// Lower stages use `ci-rustc-sysroot`, not stageN
1492
+
if target_compiler.stage == builder.top_stage{
1493
+
builder.info(&format!("Creating a sysroot for stage{stage} compiler (use `rustup toolchain link 'name' build/host/stage{stage}`)", stage=target_compiler.stage));
1494
+
}
1491
1495
return target_compiler;
1492
1496
}
1493
1497
@@ -1525,11 +1529,18 @@ impl Step for Assemble {
1525
1529
1526
1530
let stage = target_compiler.stage;
1527
1531
let host = target_compiler.host;
1528
-
letmsg = if build_compiler.host == host {
1529
-
format!("Assembling stage{} compiler", stage)
1532
+
let(host_info, dir_name) = if build_compiler.host == host {
0 commit comments