summaryrefslogtreecommitdiff
path: root/dev-lang/rust/files/1.83.0-cross-compile-libz.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.83.0-cross-compile-libz.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.83.0-cross-compile-libz.patch')
-rw-r--r--dev-lang/rust/files/1.83.0-cross-compile-libz.patch21
1 files changed, 0 insertions, 21 deletions
diff --git a/dev-lang/rust/files/1.83.0-cross-compile-libz.patch b/dev-lang/rust/files/1.83.0-cross-compile-libz.patch
deleted file mode 100644
index 12844fd7efc7..000000000000
--- a/dev-lang/rust/files/1.83.0-cross-compile-libz.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-https://paste.sr.ht/~kchibisov/682321e0fd4a3ece4a4b7b71591896f5cd3cdb22
-https://github.com/gentoo/gentoo/pull/35246#discussion_r1484525497
-
-diff --git a/compiler/rustc_llvm/build.rs b/compiler/rustc_llvm/build.rs
-index f606fa483ca..8a2e1c40e8b 100644
---- a/compiler/rustc_llvm/build.rs
-+++ b/compiler/rustc_llvm/build.rs
-@@ -220,12 +220,7 @@
- let mut cmd = Command::new(&llvm_config);
- cmd.arg(llvm_link_arg).arg("--libs");
-
-- // Don't link system libs if cross-compiling unless targetting Windows.
-- // On Windows system DLLs aren't linked directly, instead import libraries are used.
-- // These import libraries are independent of the host.
-- if !is_crossed || target.contains("windows") {
-- cmd.arg("--system-libs");
-- }
-+ cmd.arg("--system-libs");
-
- // We need libkstat for getHostCPUName on SPARC builds.
- // See also: https://github.com/llvm/llvm-project/issues/64186