aboutsummaryrefslogtreecommitdiffstats
path: root/testing/rust/link-musl-dynamically.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2016-08-06 02:40:28 +0200
committerJakub Jirutka <jakub@jirutka.cz>2016-08-06 02:46:07 +0200
commit2a8472b921baf8c2ac35688df5188f034b526441 (patch)
treec1dd188efdfadc06ed3a5b518d27dc51f62f319b /testing/rust/link-musl-dynamically.patch
parente66941ed72d80c578ea9727851fb0cc2c65214e9 (diff)
downloadaports-2a8472b921baf8c2ac35688df5188f034b526441.tar.bz2
aports-2a8472b921baf8c2ac35688df5188f034b526441.tar.xz
testing/rust: new aport
http://www.rust-lang.org The Rust Programming Language
Diffstat (limited to 'testing/rust/link-musl-dynamically.patch')
-rw-r--r--testing/rust/link-musl-dynamically.patch76
1 files changed, 76 insertions, 0 deletions
diff --git a/testing/rust/link-musl-dynamically.patch b/testing/rust/link-musl-dynamically.patch
new file mode 100644
index 0000000000..d15eb91ded
--- /dev/null
+++ b/testing/rust/link-musl-dynamically.patch
@@ -0,0 +1,76 @@
+From: Jakub Jirutka <jakub@jirutka.cz>
+Date: Thu, 04 Aug 2016 17:53:00 +0200
+Subject: [PATCH] Do not link musl statically
+
+Static linking of rustc on Alpine doesn't work yet.
+
+This patch is ported from
+https://gist.github.com/japaric/52b8816a4c86f5a4699bcc50ebc3e020.
+
+--- a/src/bootstrap/build/sanity.rs
++++ b/src/bootstrap/build/sanity.rs
+@@ -97,26 +91,6 @@
+ panic!("the iOS target is only supported on OSX");
+ }
+
+- // Make sure musl-root is valid if specified
+- if target.contains("musl") && (target.contains("x86_64") || target.contains("i686")) {
+- match build.config.musl_root {
+- Some(ref root) => {
+- if fs::metadata(root.join("lib/libc.a")).is_err() {
+- panic!("couldn't find libc.a in musl dir: {}",
+- root.join("lib").display());
+- }
+- if fs::metadata(root.join("lib/libunwind.a")).is_err() {
+- panic!("couldn't find libunwind.a in musl dir: {}",
+- root.join("lib").display());
+- }
+- }
+- None => {
+- panic!("when targeting MUSL the build.musl-root option \
+- must be specified in config.toml")
+- }
+- }
+- }
+-
+ if target.contains("msvc") {
+ // There are three builds of cmake on windows: MSVC, MinGW, and
+ // Cygwin. The Cygwin build does not have generators for Visual
+--- a/src/liblibc/src/unix/mod.rs
++++ b/src/liblibc/src/unix/mod.rs
+@@ -187,11 +187,6 @@
+ } else if #[cfg(all(not(stdbuild), feature = "use_std"))] {
+ // cargo build, don't pull in anything extra as the libstd dep
+ // already pulls in all libs.
+- } else if #[cfg(any(all(target_env = "musl", not(target_arch = "mips")),
+- target_env = "musleabi",
+- target_env = "musleabihf"))] {
+- #[link(name = "c", kind = "static")]
+- extern {}
+ } else if #[cfg(target_os = "emscripten")] {
+ #[link(name = "c")]
+ extern {}
+--- a/src/librustc_back/target/x86_64_unknown_linux_musl.rs
++++ b/src/librustc_back/target/x86_64_unknown_linux_musl.rs
+@@ -11,7 +11,7 @@
+ use target::Target;
+
+ pub fn target() -> Target {
+- let mut base = super::linux_musl_base::opts();
++ let mut base = super::linux_base::opts();
+ base.cpu = "x86-64".to_string();
+ base.max_atomic_width = 64;
+ base.pre_link_args.push("-m64".to_string());
+--- a/src/libunwind/build.rs
++++ b/src/libunwind/build.rs
+@@ -16,9 +16,7 @@
+ let target = env::var("TARGET").unwrap();
+
+ if target.contains("linux") {
+- if target.contains("musl") && (target.contains("x86_64") || target.contains("i686")) {
+- println!("cargo:rustc-link-lib=static=unwind");
+- } else if !target.contains("android") {
++ if !target.contains("android") {
+ println!("cargo:rustc-link-lib=gcc_s");
+ }
+ } else if target.contains("freebsd") {