about summary refs log tree commit diff
diff options
context:
space:
mode:
authoronur-ozkan <work@onurozkan.dev>2024-01-17 14:33:24 +0300
committeronur-ozkan <work@onurozkan.dev>2024-01-17 14:33:24 +0300
commit341f0a1390e2549359f5c83d72674a84c69fe3d8 (patch)
tree8aba22b348b127cbd2782c57c448497458647934
parentd73bd3fb3ba312f3e6b5af4d56d1161d37b71620 (diff)
downloadrust-341f0a1390e2549359f5c83d72674a84c69fe3d8.tar.gz
rust-341f0a1390e2549359f5c83d72674a84c69fe3d8.zip
revert temporary patch #108288
Signed-off-by: onur-ozkan <work@onurozkan.dev>
-rw-r--r--src/bootstrap/src/core/build_steps/compile.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/bootstrap/src/core/build_steps/compile.rs b/src/bootstrap/src/core/build_steps/compile.rs
index 190f0fe3cdd..a6a5af22d25 100644
--- a/src/bootstrap/src/core/build_steps/compile.rs
+++ b/src/bootstrap/src/core/build_steps/compile.rs
@@ -1678,13 +1678,6 @@ impl Step for Assemble {
         // when not performing a full bootstrap).
         builder.ensure(Rustc::new(build_compiler, target_compiler.host));
 
-        // FIXME: For now patch over problems noted in #90244 by early returning here, even though
-        // we've not properly assembled the target sysroot. A full fix is pending further investigation,
-        // for now full bootstrap usage is rare enough that this is OK.
-        if target_compiler.stage >= 3 && !builder.config.full_bootstrap {
-            return target_compiler;
-        }
-
         for &backend in builder.config.rust_codegen_backends.iter() {
             if backend == "llvm" {
                 continue; // Already built as part of rustc