rustc_target/spec/targets/
i386_apple_ios.rs

1use crate::spec::base::apple::{Arch, TargetAbi, base};
2use crate::spec::{Target, TargetOptions};
3
4pub(crate) fn target() -> Target {
5    // i386-apple-ios 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("ios", Arch::I386, TargetAbi::Simulator);
8    Target {
9        llvm_target,
10        metadata: crate::spec::TargetMetadata {
11            description: Some("x86 Apple iOS Simulator".into()),
12            tier: Some(3),
13            host_tools: Some(false),
14            std: Some(true),
15        },
16        pointer_width: 32,
17        data_layout: "e-m:o-p:32:32-p270:32:32-p271:32:32-p272:64:64-\
18            i128:128-f64:32:64-f80:128-n8:16:32-S128"
19            .into(),
20        arch,
21        options: TargetOptions { max_atomic_width: Some(64), ..opts },
22    }
23}