]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/armv7r_none_eabihf.rs
Auto merge of #2680 - RalfJung:rustup, r=RalfJung
[rust.git] / compiler / rustc_target / src / spec / armv7r_none_eabihf.rs
1 // Targets the Little-endian Cortex-R4F/R5F processor (ARMv7-R)
2
3 use crate::spec::{Cc, LinkerFlavor, Lld, PanicStrategy, RelocModel, Target, TargetOptions};
4
5 pub fn target() -> Target {
6     Target {
7         llvm_target: "armv7r-unknown-none-eabihf".into(),
8         pointer_width: 32,
9         data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(),
10         arch: "arm".into(),
11
12         options: TargetOptions {
13             abi: "eabihf".into(),
14             linker_flavor: LinkerFlavor::Gnu(Cc::No, Lld::Yes),
15             linker: Some("rust-lld".into()),
16             relocation_model: RelocModel::Static,
17             panic_strategy: PanicStrategy::Abort,
18             features: "+vfp3,-d32,-fp16".into(),
19             max_atomic_width: Some(32),
20             emit_debug_gdb_scripts: false,
21             // GCC and Clang default to 8 for arm-none here
22             c_enum_min_bits: 8,
23             ..Default::default()
24         },
25     }
26 }