diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-07-30 09:27:55 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-10-17 00:58:44 -0500 |
commit | 29e11a1231ed159572aa4e6c64fd9cdac97f7c03 (patch) | |
tree | 8abd711b96829786858c97afb381f16992d31c58 /bootstrap/rust-1.78/0002-Fix-linking-to-zlib-when-cross-compiling.patch | |
parent | 595bc02f3080bbf44fa78068e5b56e13821ab6a6 (diff) | |
download | packages-29e11a1231ed159572aa4e6c64fd9cdac97f7c03.tar.gz packages-29e11a1231ed159572aa4e6c64fd9cdac97f7c03.tar.bz2 packages-29e11a1231ed159572aa4e6c64fd9cdac97f7c03.tar.xz packages-29e11a1231ed159572aa4e6c64fd9cdac97f7c03.zip |
bootstrap/rust-1.{61-79}: New package
Diffstat (limited to 'bootstrap/rust-1.78/0002-Fix-linking-to-zlib-when-cross-compiling.patch')
-rw-r--r-- | bootstrap/rust-1.78/0002-Fix-linking-to-zlib-when-cross-compiling.patch | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/bootstrap/rust-1.78/0002-Fix-linking-to-zlib-when-cross-compiling.patch b/bootstrap/rust-1.78/0002-Fix-linking-to-zlib-when-cross-compiling.patch new file mode 100644 index 000000000..3c60a7823 --- /dev/null +++ b/bootstrap/rust-1.78/0002-Fix-linking-to-zlib-when-cross-compiling.patch @@ -0,0 +1,34 @@ +From 9357baa3eede8062b7c17407d23c3d2102af8435 Mon Sep 17 00:00:00 2001 +From: Samuel Holland <samuel@sholland.org> +Date: Wed, 10 Jan 2018 13:36:41 -0600 +Subject: [PATCH 02/12] Fix linking to zlib when cross-compiling + +--- + compiler/rustc_llvm/build.rs | 7 ++----- + 1 file changed, 2 insertions(+), 5 deletions(-) + +diff --git a/compiler/rustc_llvm/build.rs b/compiler/rustc_llvm/build.rs +index 4b0c1229da134..2d61b834c784b 100644 +--- a/compiler/rustc_llvm/build.rs ++++ b/compiler/rustc_llvm/build.rs +@@ -237,10 +237,8 @@ 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"); ++ cmd.args(&components); + + // We need libkstat for getHostCPUName on SPARC builds. + // See also: https://github.com/llvm/llvm-project/issues/64186 +@@ -273,7 +271,6 @@ fn main() { + println!("cargo:rustc-link-lib=z"); + println!("cargo:rustc-link-lib=execinfo"); + } +- cmd.args(&components); + + for lib in output(&mut cmd).split_whitespace() { + let name = if let Some(stripped) = lib.strip_prefix("-l") { |