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
// Lower stages use `ci-rustc-sysroot`, not stageN
1419
+
if target_compiler.stage == builder.top_stage{
1420
+
builder.info(&format!("Creating a sysroot for stage{stage} compiler (use `rustup toolchain link 'name' build/host/stage{stage}`)", stage=target_compiler.stage));
1421
+
}
1418
1422
return target_compiler;
1419
1423
}
1420
1424
@@ -1452,11 +1456,18 @@ impl Step for Assemble {
1452
1456
1453
1457
let stage = target_compiler.stage;
1454
1458
let host = target_compiler.host;
1455
-
letmsg = if build_compiler.host == host {
1456
-
format!("Assembling stage{} compiler", stage)
1459
+
let(host_info, dir_name) = if build_compiler.host == host {
0 commit comments