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