You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix default/minimum deployment target for Aarch64 simulator targets
The minimum that `rustc` encoded did not match the version in Clang, and
that meant that that when linking, we ended up bumping the version.
Specifically, this sets the correct deployment target of the following
targets:
- `aarch64-apple-ios-sim` from 10.0 to 14.0
- `aarch64-apple-ios-macabi` from 10.0 to 14.0
- `aarch64-apple-tvos-sim` from 10.0 to 14.0
- `aarch64-apple-watchos-sim` from 5.0 to 7.0
I have chosen not to document this in the platform support docs, as it
is fundamentally uninteresting; the normal targets (`aarch64-apple-ios`)
still have the same deployment target, and that's what developers should
actually target.
0 commit comments