Skip to content

Commit e57294c

Browse files
committed
Add new tier 3 aarch64-apple-watchos target
1 parent 8681e07 commit e57294c

File tree

4 files changed

+24
-0
lines changed

4 files changed

+24
-0
lines changed

compiler/rustc_target/src/spec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1578,6 +1578,7 @@ supported_targets! {
15781578
("armv7k-apple-watchos", armv7k_apple_watchos),
15791579
("arm64_32-apple-watchos", arm64_32_apple_watchos),
15801580
("x86_64-apple-watchos-sim", x86_64_apple_watchos_sim),
1581+
("aarch64-apple-watchos", aarch64_apple_watchos),
15811582
("aarch64-apple-watchos-sim", aarch64_apple_watchos_sim),
15821583

15831584
("armebv7r-none-eabi", armebv7r_none_eabi),
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
use crate::spec::base::apple::{opts, Arch};
2+
use crate::spec::{Target, TargetOptions};
3+
4+
pub fn target() -> Target {
5+
let base = opts("watchos", Arch::Arm64);
6+
Target {
7+
llvm_target: "aarch-apple-watchos".into(),
8+
pointer_width: 64,
9+
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".into(),
10+
arch: "aarch64".into(),
11+
options: TargetOptions {
12+
features: "+v8a,+neon,+fp-armv8,+apple-a7".into(),
13+
max_atomic_width: Some(128),
14+
dynamic_linking: false,
15+
position_independent_executables: true,
16+
..base
17+
},
18+
}
19+
}

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

+1
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,7 @@ target | std | host | notes
220220
`aarch64-apple-ios-macabi` | ? | | Apple Catalyst on ARM64
221221
[`aarch64-apple-tvos`](platform-support/apple-tvos.md) | ? | | ARM64 tvOS
222222
[`aarch64-apple-tvos-sim`](platform-support/apple-tvos.md) | ? | | ARM64 tvOS Simulator
223+
[`aarch64-apple-watchos`](platform-support/apple-watchos.md) | ✓ | | ARM64 Apple WatchOS
223224
[`aarch64-apple-watchos-sim`](platform-support/apple-watchos.md) | ✓ | | ARM64 Apple WatchOS Simulator
224225
[`aarch64-kmc-solid_asp3`](platform-support/kmc-solid.md) | ✓ | | ARM64 SOLID with TOPPERS/ASP3
225226
[`aarch64-nintendo-switch-freestanding`](platform-support/aarch64-nintendo-switch-freestanding.md) | * | | ARM64 Nintendo Switch, Horizon

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

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# *-apple-watchos
22
- arm64_32-apple-watchos
33
- armv7k-apple-watchos
4+
- aarch64-apple-watchos
45
- aarch64-apple-watchos-sim
56
- x86_64-apple-watchos-sim
67

@@ -9,13 +10,15 @@
910
Apple WatchOS targets:
1011
- Apple WatchOS on Arm 64_32
1112
- Apple WatchOS on Arm v7k
13+
- Apple WatchOS on Arm 64
1214
- Apple WatchOS Simulator on arm64
1315
- Apple WatchOS Simulator on x86_64
1416

1517
## Target maintainers
1618

1719
* [@deg4uss3r](https://github.com/deg4uss3r)
1820
* [@vladimir-ea](https://github.com/vladimir-ea)
21+
* [@leohowell](https://github.com/leohowell)
1922

2023
## Requirements
2124

0 commit comments

Comments
 (0)