]> git.proxmox.com Git - rustc.git/blob - compiler/rustc_target/src/spec/armv7_unknown_linux_gnueabi.rs
New upstream version 1.55.0+dfsg1
[rustc.git] / compiler / rustc_target / src / spec / armv7_unknown_linux_gnueabi.rs
1 use crate::spec::{Target, TargetOptions};
2
3 // This target is for glibc Linux on ARMv7 without thumb-mode, NEON or
4 // hardfloat.
5
6 pub fn target() -> Target {
7 Target {
8 llvm_target: "armv7-unknown-linux-gnueabi".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 options: TargetOptions {
13 abi: "eabi".to_string(),
14 features: "+v7,+thumb2,+soft-float,-neon".to_string(),
15 max_atomic_width: Some(64),
16 mcount: "\u{1}__gnu_mcount_nc".to_string(),
17 ..super::linux_gnu_base::opts()
18 },
19 }
20 }