summaryrefslogtreecommitdiff
path: root/dev-lang/rust/files/1.74.1-cross-compile-libz.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/rust/files/1.74.1-cross-compile-libz.patch')
-rw-r--r--dev-lang/rust/files/1.74.1-cross-compile-libz.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/dev-lang/rust/files/1.74.1-cross-compile-libz.patch b/dev-lang/rust/files/1.74.1-cross-compile-libz.patch
deleted file mode 100644
index 98cec093d006..000000000000
--- a/dev-lang/rust/files/1.74.1-cross-compile-libz.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-https://paste.sr.ht/~kchibisov/682321e0fd4a3ece4a4b7b71591896f5cd3cdb22
-https://github.com/gentoo/gentoo/pull/35246#discussion_r1484525497
-
---- a/compiler/rustc_llvm/build.rs
-+++ b/compiler/rustc_llvm/build.rs
-@@ -237,10 +237,7 @@ fn main() {
- // of llvm-config, not the target that we're attempting to link.
- let mut cmd = Command::new(&llvm_config);
- cmd.arg(llvm_link_arg).arg("--libs");
--
-- if !is_crossed {
-- cmd.arg("--system-libs");
-- }
-+ cmd.arg("--system-libs");
-
- if (target.starts_with("arm") && !target.contains("freebsd"))
- || target.starts_with("mips-")