]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/thumbv8m_main_none_eabi.rs
Auto merge of #69627 - ehuss:update-cargo-clippy, r=Dylan-DPC
[rust.git] / src / librustc_target / spec / thumbv8m_main_none_eabi.rs
1 // Targets the Cortex-M33 processor (Armv8-M Mainline architecture profile),
2 // without the Floating Point extension.
3
4 use crate::spec::{LinkerFlavor, LldFlavor, Target, TargetOptions, TargetResult};
5
6 pub fn target() -> TargetResult {
7     Ok(Target {
8         llvm_target: "thumbv8m.main-none-eabi".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: String::new(),
16         target_vendor: String::new(),
17         linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
18
19         options: TargetOptions { max_atomic_width: Some(32), ..super::thumb_base::opts() },
20     })
21 }