]> git.proxmox.com Git - rustc.git/blob - vendor/rustc-ap-rustc_target/src/spec/armv7r_none_eabi.rs
New upstream version 1.52.1+dfsg1
[rustc.git] / vendor / rustc-ap-rustc_target / src / spec / armv7r_none_eabi.rs
1 // Targets the Little-endian Cortex-R4/R5 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: "armv7r-unknown-none-eabi".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 linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
15 executables: true,
16 linker: Some("rust-lld".to_owned()),
17 relocation_model: RelocModel::Static,
18 panic_strategy: PanicStrategy::Abort,
19 max_atomic_width: Some(32),
20 unsupported_abis: super::arm_base::unsupported_abis(),
21 emit_debug_gdb_scripts: false,
22 ..Default::default()
23 },
24 }
25 }