blob: 8710f0254b9e062f6711133d808a76871e96c693 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
--- 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
}
|