aboutsummaryrefslogtreecommitdiffstats
path: root/testing/rust/alpine-need-rpath.patch
diff options
context:
space:
mode:
authorShiz <hi@shiz.me>2017-04-20 02:34:01 +0200
committerJakub Jirutka <jakub@jirutka.cz>2017-04-21 01:45:55 +0200
commit99199c93f79b25a673009a43b281b0c6ffbfd0a1 (patch)
tree1e61688b3e4f89c5a008ef996a785ea70c7d1583 /testing/rust/alpine-need-rpath.patch
parent06ef4afb639890920801ec034cffaa31ab25b98c (diff)
downloadaports-99199c93f79b25a673009a43b281b0c6ffbfd0a1.tar.bz2
aports-99199c93f79b25a673009a43b281b0c6ffbfd0a1.tar.xz
testing/rust: add Alpine-specific target, move our local differences there
This adds new Alpine targets to Rust, $arch-alpine-linux-musl that embed our toolchain and distribution differences. We also modify the APKBUILD to properly support (pseudo-)cross-compilation from the $arch-unknown-linux-musl bootstrap targets to this new target.
Diffstat (limited to 'testing/rust/alpine-need-rpath.patch')
-rw-r--r--testing/rust/alpine-need-rpath.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/testing/rust/alpine-need-rpath.patch b/testing/rust/alpine-need-rpath.patch
deleted file mode 100644
index 8710f0254b..0000000000
--- a/testing/rust/alpine-need-rpath.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- a/src/librustc_back/target/linux_musl_base.rs
-+++ b/src/librustc_back/target/linux_musl_base.rs
-@@ -22,5 +22,8 @@
- // Static position-independent executables are supported.
- base.static_position_independent_executables = true;
-
-+ // We need an RPATH.
-+ base.need_rpath = true;
-+
- base
- }