]> git.proxmox.com Git - rustc.git/blame - src/librustc_target/spec/thumbv7m_none_eabi.rs
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_target / spec / thumbv7m_none_eabi.rs
CommitLineData
c30ab7b3
SL
1// Targets the Cortex-M3 processor (ARMv7-M)
2
9fa01778 3use crate::spec::{LinkerFlavor, LldFlavor, Target, TargetOptions, TargetResult};
c30ab7b3
SL
4
5pub fn target() -> TargetResult {
6 Ok(Target {
7 llvm_target: "thumbv7m-none-eabi".to_string(),
8 target_endian: "little".to_string(),
9 target_pointer_width: "32".to_string(),
ea8adc8c 10 target_c_int_width: "32".to_string(),
416331ca 11 data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
c30ab7b3
SL
12 arch: "arm".to_string(),
13 target_os: "none".to_string(),
b7449926
XL
14 target_env: String::new(),
15 target_vendor: String::new(),
16 linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
c30ab7b3 17
dfeec247 18 options: TargetOptions { max_atomic_width: Some(32), ..super::thumb_base::opts() },
c30ab7b3
SL
19 })
20}