]> git.lizzy.rs Git - rust.git/blob - src/librustc_target/spec/x86_64_apple_ios.rs
Rollup merge of #61675 - fintelia:riscv-frame-pointer, r=nagisa
[rust.git] / src / librustc_target / spec / x86_64_apple_ios.rs
1 use crate::spec::{LinkerFlavor, Target, TargetOptions, TargetResult};
2 use super::apple_ios_base::{opts, Arch};
3
4 pub fn target() -> TargetResult {
5     let base = opts(Arch::X86_64)?;
6     Ok(Target {
7         llvm_target: "x86_64-apple-ios".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 }