Skip to content

Commit 328b759

Browse files
committed
Auto merge of #132764 - MikaelUrankar:freebsd_armv7, r=workingjubilee
Drop "gnu" in the target env for FreeBSD armv6/7 FreeBSD is not a GNU system
2 parents 59cec72 + f7580c6 commit 328b759

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

compiler/rustc_target/src/spec/targets/armv6_unknown_freebsd.rs

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ pub(crate) fn target() -> Target {
1414
arch: "arm".into(),
1515
options: TargetOptions {
1616
abi: "eabihf".into(),
17-
env: "gnu".into(),
1817
features: "+v6,+vfp2,-d32".into(),
1918
max_atomic_width: Some(64),
2019
mcount: "\u{1}__gnu_mcount_nc".into(),

compiler/rustc_target/src/spec/targets/armv7_unknown_freebsd.rs

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ pub(crate) fn target() -> Target {
1414
arch: "arm".into(),
1515
options: TargetOptions {
1616
abi: "eabihf".into(),
17-
env: "gnu".into(),
1817
features: "+v7,+vfp3,-d32,+thumb2,-neon".into(),
1918
max_atomic_width: Some(64),
2019
mcount: "\u{1}__gnu_mcount_nc".into(),

0 commit comments

Comments
 (0)