We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d73bd3f commit 341f0a1Copy full SHA for 341f0a1
src/bootstrap/src/core/build_steps/compile.rs
@@ -1678,13 +1678,6 @@ impl Step for Assemble {
1678
// when not performing a full bootstrap).
1679
builder.ensure(Rustc::new(build_compiler, target_compiler.host));
1680
1681
- // FIXME: For now patch over problems noted in #90244 by early returning here, even though
1682
- // we've not properly assembled the target sysroot. A full fix is pending further investigation,
1683
- // for now full bootstrap usage is rare enough that this is OK.
1684
- if target_compiler.stage >= 3 && !builder.config.full_bootstrap {
1685
- return target_compiler;
1686
- }
1687
-
1688
for &backend in builder.config.rust_codegen_backends.iter() {
1689
if backend == "llvm" {
1690
continue; // Already built as part of rustc
0 commit comments