summaryrefslogblamecommitdiff
path: root/bootstrap/rust-1.71/0011-Link-stage-2-tools-dynamically-to-libstd.patch
blob: 70c929fc7e8c371f7e0fa7ed646d029a9eb623c5 (plain) (tree)
























                                                                            
From 74767e8d9cad131d8fb67054df8110065649e6dd Mon Sep 17 00:00:00 2001
From: Samuel Holland <samuel@sholland.org>
Date: Mon, 24 Sep 2018 23:42:23 +0000
Subject: [PATCH 11/13] Link stage 2 tools dynamically to libstd

---
 src/bootstrap/builder.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bootstrap/builder.rs b/src/bootstrap/builder.rs
index 0d387ff1e37..f3ecd9067d3 100644
--- a/src/bootstrap/builder.rs
+++ b/src/bootstrap/builder.rs
@@ -1994,7 +1994,7 @@ pub fn cargo(
         // When we build Rust dylibs they're all intended for intermediate
         // usage, so make sure we pass the -Cprefer-dynamic flag instead of
         // linking all deps statically into the dylib.
-        if matches!(mode, Mode::Std | Mode::Rustc) {
+        if matches!(mode, Mode::Std | Mode::Rustc | Mode::ToolRustc) {
             rustflags.arg("-Cprefer-dynamic");
         }
 
-- 
2.35.1