summaryrefslogtreecommitdiff
path: root/dev-lang/rust/files/1.78.0-musl-dynamic-linking.patch
diff options
context:
space:
mode:
authorMatt Jolly <kangie@gentoo.org>2025-05-31 16:23:15 +1000
committerMatt Jolly <kangie@gentoo.org>2025-06-04 07:36:56 +1000
commit057daa00036e040231855c45bc2bba039c29cb53 (patch)
tree8039c2610a50790596fd79ac460c42cdbe762f1b /dev-lang/rust/files/1.78.0-musl-dynamic-linking.patch
parent388cbca2dd4f4826e9bb99f89b2bb1808e84de52 (diff)
downloadgentoo-057daa00036e040231855c45bc2bba039c29cb53.tar.gz
gentoo-057daa00036e040231855c45bc2bba039c29cb53.tar.bz2
gentoo-057daa00036e040231855c45bc2bba039c29cb53.zip
dev-lang/rust: stop using FILESDIR
files/ has been too big for a while now. Instead use the rust-patches repository that was created to manage these patches. No revbumps required - they were either done beforehand when we dropped a bad patch _or_ are not required as the only additions are backported build-time fixes (done in previous commits). Signed-off-by: Matt Jolly <kangie@gentoo.org>
Diffstat (limited to 'dev-lang/rust/files/1.78.0-musl-dynamic-linking.patch')
-rw-r--r--dev-lang/rust/files/1.78.0-musl-dynamic-linking.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-lang/rust/files/1.78.0-musl-dynamic-linking.patch b/dev-lang/rust/files/1.78.0-musl-dynamic-linking.patch
deleted file mode 100644
index 25a281ceaaaf..000000000000
--- a/dev-lang/rust/files/1.78.0-musl-dynamic-linking.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-From e42709c46647dab342b826d30324f3e6e5590e00 Mon Sep 17 00:00:00 2001
-From: Jory Pratt <anarchy@gentoo.org>
-Date: Tue, 2 Aug 2022 18:32:53 -0500
-Subject: [PATCH] Enable dynamic linking by default for musl
-
-Signed-off-by: Jory Pratt <anarchy@gentoo.org>
---- a/compiler/rustc_target/src/spec/base/linux_musl.rs
-+++ b/compiler/rustc_target/src/spec/base/linux_musl.rs
-@@ -10,7 +10,7 @@ pub fn opts() -> TargetOptions {
- base.link_self_contained = LinkSelfContainedDefault::InferredForMusl;
-
- // These targets statically link libc by default
-- base.crt_static_default = true;
-+ base.crt_static_default = false;
-
- base
- }
---
-2.35.1