diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-07-25 01:29:02 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2024-08-09 15:21:37 -0500 |
commit | e5f121e1f9382e8198e7319d67569fd1b86d5b8f (patch) | |
tree | bc46e9c346f9402614c8fcebadbe1a0bc2c470bf /bootstrap/rust-1.62/0002-Fix-linking-to-zlib-when-cross-compiling.patch | |
parent | 80d397f1129590d6ae4fe89b83ea80bfe8ec9815 (diff) | |
download | packages-e5f121e1f9382e8198e7319d67569fd1b86d5b8f.tar.gz packages-e5f121e1f9382e8198e7319d67569fd1b86d5b8f.tar.bz2 packages-e5f121e1f9382e8198e7319d67569fd1b86d5b8f.tar.xz packages-e5f121e1f9382e8198e7319d67569fd1b86d5b8f.zip |
bootstrap/rust-1.62: New package
Diffstat (limited to 'bootstrap/rust-1.62/0002-Fix-linking-to-zlib-when-cross-compiling.patch')
-rw-r--r-- | bootstrap/rust-1.62/0002-Fix-linking-to-zlib-when-cross-compiling.patch | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/bootstrap/rust-1.62/0002-Fix-linking-to-zlib-when-cross-compiling.patch b/bootstrap/rust-1.62/0002-Fix-linking-to-zlib-when-cross-compiling.patch new file mode 100644 index 000000000..ab00117a0 --- /dev/null +++ b/bootstrap/rust-1.62/0002-Fix-linking-to-zlib-when-cross-compiling.patch @@ -0,0 +1,36 @@ +From 702ebc6e2283f69e8b024b2cf12899a2bbdf6e8b 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/14] Fix linking to zlib when cross-compiling + +--- + compiler/rustc_llvm/build.rs | 7 +++---- + 1 file changed, 3 insertions(+), 4 deletions(-) + +diff --git a/compiler/rustc_llvm/build.rs b/compiler/rustc_llvm/build.rs +index 3b6808d693f..4713f550a73 100644 +--- a/compiler/rustc_llvm/build.rs ++++ b/compiler/rustc_llvm/build.rs +@@ -238,16 +238,15 @@ 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"); ++ cmd.arg("--system-libs"); ++ cmd.args(&components); + +- if !is_crossed { +- cmd.arg("--system-libs"); +- } else if target.contains("windows-gnu") { ++ if target.contains("windows-gnu") { + println!("cargo:rustc-link-lib=shell32"); + println!("cargo:rustc-link-lib=uuid"); + } else if target.contains("netbsd") || target.contains("haiku") || target.contains("darwin") { + println!("cargo:rustc-link-lib=z"); + } +- cmd.args(&components); + + for lib in output(&mut cmd).split_whitespace() { + let name = if let Some(stripped) = lib.strip_prefix("-l") { +-- +2.35.1 + |