]> git.lizzy.rs Git - rust.git/blob - compiler/rustc_target/src/spec/arm_unknown_linux_musleabi.rs
Auto merge of #76345 - okready:sgx-mem-range-overflow-checks, r=joshtriplett
[rust.git] / compiler / rustc_target / src / spec / arm_unknown_linux_musleabi.rs
1 use crate::spec::{Target, TargetOptions};
2
3 pub fn target() -> Target {
4     let mut base = super::linux_musl_base::opts();
5
6     // Most of these settings are copied from the arm_unknown_linux_gnueabi
7     // target.
8     base.features = "+strict-align,+v6".to_string();
9     base.max_atomic_width = Some(64);
10     Target {
11         // It's important we use "gnueabi" and not "musleabi" here. LLVM uses it
12         // to determine the calling convention and float ABI, and it doesn't
13         // support the "musleabi" value.
14         llvm_target: "arm-unknown-linux-gnueabi".to_string(),
15         pointer_width: 32,
16         data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
17         arch: "arm".to_string(),
18         options: TargetOptions {
19             unsupported_abis: super::arm_base::unsupported_abis(),
20             mcount: "\u{1}mcount".to_string(),
21             ..base
22         },
23     }
24 }