Skip to content

Commit 4ab4d48

Browse files
committed
Update platform docs for aarch64-apple-tvos-sim
1 parent ba5eeda commit 4ab4d48

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -225,6 +225,7 @@ target | std | host | notes
225225
-------|:---:|:----:|-------
226226
`aarch64-apple-ios-macabi` | ? | | Apple Catalyst on ARM64
227227
[`aarch64-apple-tvos`](platform-support/apple-tvos.md) | ? | | ARM64 tvOS
228+
[`aarch64-apple-tvos-sim`](platform-support/apple-tvos.md) | ? | | ARM64 tvOS Simulator
228229
[`aarch64-apple-watchos-sim`](platform-support/apple-watchos.md) | ✓ | | ARM64 Apple WatchOS Simulator
229230
[`aarch64-kmc-solid_asp3`](platform-support/kmc-solid.md) | ✓ | | ARM64 SOLID with TOPPERS/ASP3
230231
[`aarch64-nintendo-switch-freestanding`](platform-support/aarch64-nintendo-switch-freestanding.md) | * | | ARM64 Nintendo Switch, Horizon

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ The targets can be built by enabling them for a `rustc` build in `config.toml`,
5252
```toml
5353
[build]
5454
build-stage = 1
55-
target = ["aarch64-apple-tvos", "x86_64-apple-tvos"]
55+
target = ["aarch64-apple-tvos", "x86_64-apple-tvos", "aarch64-apple-tvos-sim"]
5656
```
5757

5858
It's possible that cargo under `-Zbuild-std` may also be used to target them.
@@ -67,6 +67,8 @@ Rust programs can be built for these targets
6767
$ rustc --target aarch64-apple-tvos your-code.rs
6868
...
6969
$ rustc --target x86_64-apple-tvos your-code.rs
70+
...
71+
$ rustc --target aarch64-apple-tvos-sim your-code.rs
7072
```
7173

7274
## Testing

0 commit comments

Comments
 (0)