rustc_target/spec/targets/
x86_64_apple_tvos.rs

1use crate::spec::base::apple::{Arch, TargetAbi, base};
2use crate::spec::{Target, TargetOptions};
3
4pub(crate) fn target() -> Target {
5    // x86_64-apple-tvos is a simulator target, even though it isn't declared
6    // that way in the target name like the other ones...
7    let (opts, llvm_target, arch) = base("tvos", Arch::X86_64, TargetAbi::Simulator);
8    Target {
9        llvm_target,
10        metadata: crate::spec::TargetMetadata {
11            description: Some("x86_64 Apple tvOS Simulator".into()),
12            tier: Some(3),
13            host_tools: Some(false),
14            std: Some(true),
15        },
16        pointer_width: 64,
17        data_layout:
18            "e-m:o-p270:32:32-p271:32:32-p272:64:64-i64:64-i128:128-f80:128-n8:16:32:64-S128".into(),
19        arch,
20        options: TargetOptions { max_atomic_width: Some(128), ..opts },
21    }
22}