]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/armebv7r_none_eabihf.rs
Merge commit '5988bbd24aa87732bfa1d111ba00bcdaa22c481a' into sync_cg_clif-2020-11-27
[rust.git] / compiler / rustc_target / src / spec / armebv7r_none_eabihf.rs
1 // Targets the Cortex-R4F/R5F processor (ARMv7-R)
2
3 use crate::spec::{LinkerFlavor, LldFlavor, PanicStrategy, RelocModel};
4 use crate::spec::{Target, TargetOptions};
5
6 pub fn target() -> Target {
7     Target {
8         llvm_target: "armebv7r-unknown-none-eabihf".to_string(),
9         pointer_width: 32,
10         data_layout: "E-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
11         arch: "arm".to_string(),
12
13         options: TargetOptions {
14             endian: "big".to_string(),
15             linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
16             executables: true,
17             linker: Some("rust-lld".to_owned()),
18             relocation_model: RelocModel::Static,
19             panic_strategy: PanicStrategy::Abort,
20             features: "+vfp3,-d32,-fp16".to_string(),
21             max_atomic_width: Some(32),
22             unsupported_abis: super::arm_base::unsupported_abis(),
23             emit_debug_gdb_scripts: false,
24             ..Default::default()
25         },
26     }
27 }