]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_target/src/spec/armv7_unknown_linux_gnueabi.rs
New upstream version 1.61.0+dfsg1
[rustc.git] / compiler / rustc_target / src / spec / armv7_unknown_linux_gnueabi.rs
CommitLineData
29967ef6 1use crate::spec::{Target, TargetOptions};
416331ca
XL
2
3// This target is for glibc Linux on ARMv7 without thumb-mode, NEON or
4// hardfloat.
5
29967ef6 6pub fn target() -> Target {
29967ef6 7 Target {
5e7ed085 8 llvm_target: "armv7-unknown-linux-gnueabi".into(),
29967ef6 9 pointer_width: 32,
5e7ed085
FG
10 data_layout: "e-m:e-p:32:32-Fi8-i64:64-v128:64:128-a:0:32-n32-S64".into(),
11 arch: "arm".into(),
416331ca 12 options: TargetOptions {
5e7ed085
FG
13 abi: "eabi".into(),
14 features: "+v7,+thumb2,+soft-float,-neon".into(),
416331ca 15 max_atomic_width: Some(64),
5e7ed085 16 mcount: "\u{1}__gnu_mcount_nc".into(),
136023e0 17 ..super::linux_gnu_base::opts()
dfeec247 18 },
29967ef6 19 }
416331ca 20}