]> git.proxmox.com Git - rustc.git/blame - compiler/rustc_target/src/spec/x86_64_apple_ios_macabi.rs
New upstream version 1.50.0+dfsg1
[rustc.git] / compiler / rustc_target / src / spec / x86_64_apple_ios_macabi.rs
CommitLineData
1b1a35ee 1use super::apple_sdk_base::{opts, Arch};
29967ef6 2use crate::spec::{Target, TargetOptions};
e1599b0c 3
29967ef6
XL
4pub fn target() -> Target {
5 let base = opts("ios", Arch::X86_64_macabi);
6 Target {
e1599b0c 7 llvm_target: "x86_64-apple-ios13.0-macabi".to_string(),
29967ef6 8 pointer_width: 64,
dfeec247
XL
9 data_layout: "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"
10 .to_string(),
e1599b0c 11 arch: "x86_64".to_string(),
dfeec247 12 options: TargetOptions { max_atomic_width: Some(64), stack_probes: true, ..base },
29967ef6 13 }
e1599b0c 14}