]> git.proxmox.com Git - rustc.git/blame - src/librustc_target/spec/x86_64_apple_ios_macabi.rs
New upstream version 1.39.0+dfsg1
[rustc.git] / src / librustc_target / spec / x86_64_apple_ios_macabi.rs
CommitLineData
e1599b0c
XL
1use crate::spec::{LinkerFlavor, Target, TargetOptions, TargetResult};
2use super::apple_ios_base::{opts, Arch};
3
4pub fn target() -> TargetResult {
5 let base = opts(Arch::X86_64_macabi)?;
6 Ok(Target {
7 llvm_target: "x86_64-apple-ios13.0-macabi".to_string(),
8 target_endian: "little".to_string(),
9 target_pointer_width: "64".to_string(),
10 target_c_int_width: "32".to_string(),
11 data_layout: "e-m:o-i64:64-f80:128-n8:16:32:64-S128".to_string(),
12 arch: "x86_64".to_string(),
13 target_os: "ios".to_string(),
14 target_env: String::new(),
15 target_vendor: "apple".to_string(),
16 linker_flavor: LinkerFlavor::Gcc,
17 options: TargetOptions {
18 max_atomic_width: Some(64),
19 stack_probes: true,
20 .. base
21 }
22 })
23}