Skip to content

Commit 774bce7

Browse files
committed
Auto merge of #77484 - terhechte:support-ios-catalyst-macabi-arm64-target-triple, r=nikomatsakis
Add support for Arm64 Catalyst on ARM Macs This is an iteration on #63467 which was merged a while ago. In the aforementioned PR, I added support for the `X86_64-apple-ios-macabi` target triple, which is Catalyst, iOS apps running on macOS. Very soon, Apple will launch ARM64 based Macs which will introduce `aarch64_apple_darwin.rs`, macOS apps using the Darwin ABI running on ARM. This PR adds support for Catalyst apps on ARM Macs: iOS apps compiled for the darwin ABI. I don't have access to a Apple Developer Transition Kit (DTK), so I can't really test if the generated binaries work correctly. I'm vaguely hopeful that somebody with access to a DTK could give this a spin.
2 parents c922857 + 836d439 commit 774bce7

File tree

5 files changed

+39
-3
lines changed

5 files changed

+39
-3
lines changed

compiler/rustc_codegen_ssa/src/back/link.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -2090,9 +2090,10 @@ fn add_apple_sdk(cmd: &mut dyn Linker, sess: &Session, flavor: LinkerFlavor) {
20902090
("aarch64", "tvos") => "appletvos",
20912091
("x86_64", "tvos") => "appletvsimulator",
20922092
("arm", "ios") => "iphoneos",
2093+
("aarch64", "ios") if llvm_target.contains("macabi") => "macosx",
20932094
("aarch64", "ios") => "iphoneos",
20942095
("x86", "ios") => "iphonesimulator",
2095-
("x86_64", "ios") if llvm_target.contains("macabi") => "macosx10.15",
2096+
("x86_64", "ios") if llvm_target.contains("macabi") => "macosx",
20962097
("x86_64", "ios") => "iphonesimulator",
20972098
_ => {
20982099
sess.err(&format!("unsupported arch `{}` for os `{}`", arch, os));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
use super::apple_sdk_base::{opts, Arch};
2+
use crate::spec::{Target, TargetOptions};
3+
4+
pub fn target() -> Target {
5+
let base = opts("ios", Arch::Arm64_macabi);
6+
Target {
7+
llvm_target: "arm64-apple-ios-macabi".to_string(),
8+
pointer_width: 64,
9+
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".to_string(),
10+
arch: "aarch64".to_string(),
11+
options: TargetOptions {
12+
features: "+neon,+fp-armv8,+apple-a7".to_string(),
13+
eliminate_frame_pointer: false,
14+
max_atomic_width: Some(128),
15+
unsupported_abis: super::arm_base::unsupported_abis(),
16+
forces_embed_bitcode: true,
17+
// Taken from a clang build on Xcode 11.4.1.
18+
// These arguments are not actually invoked - they just have
19+
// to look right to pass App Store validation.
20+
bitcode_llvm_cmdline: "-triple\0\
21+
arm64-apple-ios-macabi\0\
22+
-emit-obj\0\
23+
-disable-llvm-passes\0\
24+
-target-abi\0\
25+
darwinpcs\0\
26+
-Os\0"
27+
.to_string(),
28+
..base
29+
},
30+
}
31+
}

compiler/rustc_target/src/spec/apple_sdk_base.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pub enum Arch {
1010
I386,
1111
X86_64,
1212
X86_64_macabi,
13+
Arm64_macabi,
1314
}
1415

1516
fn target_cpu(arch: Arch) -> String {
@@ -20,14 +21,15 @@ fn target_cpu(arch: Arch) -> String {
2021
I386 => "yonah",
2122
X86_64 => "core2",
2223
X86_64_macabi => "core2",
24+
Arm64_macabi => "apple-a12",
2325
}
2426
.to_string()
2527
}
2628

2729
fn link_env_remove(arch: Arch) -> Vec<String> {
2830
match arch {
2931
Armv7 | Armv7s | Arm64 | I386 | X86_64 => vec!["MACOSX_DEPLOYMENT_TARGET".to_string()],
30-
X86_64_macabi => vec!["IPHONEOS_DEPLOYMENT_TARGET".to_string()],
32+
X86_64_macabi | Arm64_macabi => vec!["IPHONEOS_DEPLOYMENT_TARGET".to_string()],
3133
}
3234
}
3335

compiler/rustc_target/src/spec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -579,6 +579,7 @@ supported_targets! {
579579
("armv7-apple-ios", armv7_apple_ios),
580580
("armv7s-apple-ios", armv7s_apple_ios),
581581
("x86_64-apple-ios-macabi", x86_64_apple_ios_macabi),
582+
("aarch64-apple-ios-macabi", aarch64_apple_ios_macabi),
582583
("aarch64-apple-tvos", aarch64_apple_tvos),
583584
("x86_64-apple-tvos", x86_64_apple_tvos),
584585

src/doc/rustc/src/platform-support.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ not available.
152152

153153
target | std | host | notes
154154
-------|-----|------|-------
155+
`aarch64-apple-ios-macabi` | ? | | Apple Catalyst on ARM64
155156
`aarch64-apple-tvos` | * | | ARM64 tvOS
156157
`aarch64-unknown-freebsd` | ✓ | ✓ | ARM64 FreeBSD
157158
`aarch64-unknown-hermit` | ? | |
@@ -207,7 +208,7 @@ target | std | host | notes
207208
`thumbv7a-uwp-windows-msvc` | ✓ | |
208209
`thumbv7neon-unknown-linux-musleabihf` | ? | | Thumb2-mode ARMv7a Linux with NEON, MUSL
209210
`thumbv4t-none-eabi` | * | | ARMv4T T32
210-
`x86_64-apple-ios-macabi` | ✓ | | Apple Catalyst
211+
`x86_64-apple-ios-macabi` | ✓ | | Apple Catalyst on x86_64
211212
`x86_64-apple-tvos` | * | | x86 64-bit tvOS
212213
`x86_64-linux-kernel` | * | | Linux kernel modules
213214
`x86_64-pc-solaris` | ? | |

0 commit comments

Comments
 (0)