Skip to content

Commit 576e50f

Browse files
committed
dynmusl targets: drop need_rpath option (alpine-specific for now)
1 parent 44078cd commit 576e50f

13 files changed

+0
-14
lines changed

compiler/rustc_target/src/spec/aarch64_unknown_linux_dynmusl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "aarch64-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/armv6_unknown_linux_dynmusleabihf.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "armv6-unknown-linux-musleabihf".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/armv7_unknown_linux_dynmusleabihf.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "armv7-unknown-linux-musleabihf".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/i586_unknown_linux_dynmusl.rs

-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ pub fn target() -> Target {
55

66
base.options.cpu = "pentium4".to_string();
77
base.llvm_target = "i586-unknown-linux-musl".to_string();
8-
base.options.vendor = "alpine".to_string();
98
base.options.crt_static_default = false;
109
base.options.static_position_independent_executables = true;
11-
base.options.need_rpath = true;
1210

1311
base
1412
}

compiler/rustc_target/src/spec/mips64_unknown_linux_dynmuslabi64.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "mips64-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/mips64el_unknown_linux_dynmuslabi64.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "mips64el-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/mips_unknown_linux_dynmusl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "mips-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/mipsel_unknown_linux_dynmusl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "mipsel-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/powerpc64_unknown_linux_dynmusl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "powerpc64-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/powerpc64le_unknown_linux_dynmusl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "powerpc64le-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/powerpc_unknown_linux_dynmusl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "powerpc-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/s390x_unknown_linux_dynmusl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "s390x-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

compiler/rustc_target/src/spec/x86_64_unknown_linux_dynmusl.rs

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub fn target() -> Target {
66
base.llvm_target = "x86_64-unknown-linux-musl".to_string();
77
base.options.crt_static_default = false;
88
base.options.static_position_independent_executables = true;
9-
base.options.need_rpath = true;
109

1110
base
1211
}

0 commit comments

Comments
 (0)