]> git.proxmox.com Git - rustc.git/blob - src/librustc_target/spec/x86_64_apple_tvos.rs
New upstream version 1.47.0+dfsg1
[rustc.git] / src / librustc_target / spec / x86_64_apple_tvos.rs
1 use super::apple_sdk_base::{opts, AppleOS, Arch};
2 use crate::spec::{LinkerFlavor, Target, TargetOptions, TargetResult};
3
4 pub fn target() -> TargetResult {
5 let base = opts(Arch::X86_64, AppleOS::iOS)?;
6 Ok(Target {
7 llvm_target: "x86_64-apple-tvos".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: "tvos".to_string(),
14 target_env: String::new(),
15 target_vendor: "apple".to_string(),
16 linker_flavor: LinkerFlavor::Gcc,
17 options: TargetOptions { max_atomic_width: Some(64), stack_probes: true, ..base },
18 })
19 }