Drop "gnu" in the target env for FreeBSD armv6/7

FreeBSD is not a GNU system
This commit is contained in:
Mikael Urankar 2024-11-08 09:29:52 +01:00
parent 78bb5ee79e
commit f7580c6f48
2 changed files with 0 additions and 2 deletions

View File

@ -14,7 +14,6 @@ pub(crate) fn target() -> Target {
arch: "arm".into(), arch: "arm".into(),
options: TargetOptions { options: TargetOptions {
abi: "eabihf".into(), abi: "eabihf".into(),
env: "gnu".into(),
features: "+v6,+vfp2,-d32".into(), features: "+v6,+vfp2,-d32".into(),
max_atomic_width: Some(64), max_atomic_width: Some(64),
mcount: "\u{1}__gnu_mcount_nc".into(), mcount: "\u{1}__gnu_mcount_nc".into(),

View File

@ -14,7 +14,6 @@ pub(crate) fn target() -> Target {
arch: "arm".into(), arch: "arm".into(),
options: TargetOptions { options: TargetOptions {
abi: "eabihf".into(), abi: "eabihf".into(),
env: "gnu".into(),
features: "+v7,+vfp3,-d32,+thumb2,-neon".into(), features: "+v7,+vfp3,-d32,+thumb2,-neon".into(),
max_atomic_width: Some(64), max_atomic_width: Some(64),
mcount: "\u{1}__gnu_mcount_nc".into(), mcount: "\u{1}__gnu_mcount_nc".into(),