Skip to content

Commit 29875c2

Browse files
committed
rustc: Change target_env for ARM targets to gnu
Right now they're `gnueabihf` and `gnueabi`, but when adding new platforms like musl on ARM it's unfortunate to have to test for all three (`musl`, `musleabi`, and `musleabihf`). This PR switches everything currently to `gnu`, and the new musl targets can also use `musl` when they land. Closes #33244
1 parent 3157691 commit 29875c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/librustc_back/target/arm_unknown_linux_gnueabi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn target() -> Target {
1919
data_layout: "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
2020
arch: "arm".to_string(),
2121
target_os: "linux".to_string(),
22-
target_env: "gnueabi".to_string(),
22+
target_env: "gnu".to_string(),
2323
target_vendor: "unknown".to_string(),
2424

2525
options: TargetOptions {

src/librustc_back/target/arm_unknown_linux_gnueabihf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn target() -> Target {
1919
data_layout: "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
2020
arch: "arm".to_string(),
2121
target_os: "linux".to_string(),
22-
target_env: "gnueabihf".to_string(),
22+
target_env: "gnu".to_string(),
2323
target_vendor: "unknown".to_string(),
2424

2525
options: TargetOptions {

src/librustc_back/target/armv7_unknown_linux_gnueabihf.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub fn target() -> Target {
1919
data_layout: "e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
2020
arch: "arm".to_string(),
2121
target_os: "linux".to_string(),
22-
target_env: "gnueabihf".to_string(),
22+
target_env: "gnu".to_string(),
2323
target_vendor: "unknown".to_string(),
2424

2525
options: TargetOptions {

0 commit comments

Comments
 (0)