]> git.proxmox.com Git - rustc.git/blame - src/librustc_target/spec/armv7_unknown_linux_gnueabi.rs
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_target / spec / armv7_unknown_linux_gnueabi.rs
CommitLineData
416331ca
XL
1use crate::spec::{LinkerFlavor, Target, TargetOptions, TargetResult};
2
3// This target is for glibc Linux on ARMv7 without thumb-mode, NEON or
4// hardfloat.
5
6pub fn target() -> TargetResult {
7 let base = super::linux_base::opts();
8 Ok(Target {
9 llvm_target: "armv7-unknown-linux-gnueabi".to_string(),
10 target_endian: "little".to_string(),
11 target_pointer_width: "32".to_string(),
12 target_c_int_width: "32".to_string(),
13 data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".to_string(),
14 arch: "arm".to_string(),
15 target_os: "linux".to_string(),
16 target_env: "gnu".to_string(),
17 target_vendor: "unknown".to_string(),
18 linker_flavor: LinkerFlavor::Gcc,
19
20 options: TargetOptions {
21 features: "+v7,+thumb2,+soft-float,-neon".to_string(),
22 cpu: "generic".to_string(),
23 max_atomic_width: Some(64),
f035d41b 24 unsupported_abis: super::arm_base::unsupported_abis(),
416331ca 25 target_mcount: "\u{1}__gnu_mcount_nc".to_string(),
dfeec247
XL
26 ..base
27 },
416331ca
XL
28 })
29}