]> git.proxmox.com Git - rustc.git/blob - src/librustc_target/spec/armebv7r_none_eabihf.rs
New upstream version 1.44.1+dfsg1
[rustc.git] / src / librustc_target / spec / armebv7r_none_eabihf.rs
1 // Targets the Cortex-R4F/R5F processor (ARMv7-R)
2
3 use crate::spec::{LinkerFlavor, LldFlavor, PanicStrategy, Target, TargetOptions, TargetResult};
4
5 pub fn target() -> TargetResult {
6 Ok(Target {
7 llvm_target: "armebv7r-unknown-none-eabihf".to_string(),
8 target_endian: "big".to_string(),
9 target_pointer_width: "32".to_string(),
10 target_c_int_width: "32".to_string(),
11 data_layout: "E-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
12 arch: "arm".to_string(),
13 target_os: "none".to_string(),
14 target_env: String::new(),
15 target_vendor: String::new(),
16 linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
17
18 options: TargetOptions {
19 executables: true,
20 linker: Some("rust-lld".to_owned()),
21 relocation_model: "static".to_string(),
22 panic_strategy: PanicStrategy::Abort,
23 features: "+vfp3,-d32,-fp16".to_string(),
24 max_atomic_width: Some(32),
25 abi_blacklist: super::arm_base::abi_blacklist(),
26 emit_debug_gdb_scripts: false,
27 ..Default::default()
28 },
29 })
30 }