]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/armv7r_none_eabihf.rs
Auto merge of #68414 - michaelwoerister:share-drop-glue, r=alexcrichton
[rust.git] / src / librustc_target / spec / armv7r_none_eabihf.rs
1 // Targets the Little-endian Cortex-R4F/R5F processor (ARMv7-R)
2
3 use crate::spec::{LinkerFlavor, LldFlavor, PanicStrategy, Target, TargetOptions, TargetResult};
4 use std::default::Default;
5
6 pub fn target() -> TargetResult {
7     Ok(Target {
8         llvm_target: "armv7r-unknown-none-eabihf".to_string(),
9         target_endian: "little".to_string(),
10         target_pointer_width: "32".to_string(),
11         target_c_int_width: "32".to_string(),
12         data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
13         arch: "arm".to_string(),
14         target_os: "none".to_string(),
15         target_env: "".to_string(),
16         target_vendor: "".to_string(),
17         linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
18
19         options: TargetOptions {
20             executables: true,
21             linker: Some("rust-lld".to_owned()),
22             relocation_model: "static".to_string(),
23             panic_strategy: PanicStrategy::Abort,
24             features: "+vfp3,-d32,-fp16".to_string(),
25             max_atomic_width: Some(32),
26             abi_blacklist: super::arm_base::abi_blacklist(),
27             emit_debug_gdb_scripts: false,
28             ..Default::default()
29         },
30     })
31 }