Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix default/minimum deployment target for Aarch64 simulator targets #129367

Merged
merged 1 commit into from
Sep 12, 2024

Commits on Sep 9, 2024

  1. 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
    simulator and Mac Catalyst targets:
    - `aarch64-apple-ios-sim` 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
    - `aarch64-apple-ios-macabi` from 13.1 to 14.0
    
    I have chosen to not document the simulator target versions in the
    platform support docs, as it is fundamentally uninteresting; the normal
    targets (e.g. `aarch64-apple-ios`, `aarch64-apple-tvos`) still have the
    same deployment target as before, and that's what developers should
    actually target.
    madsmtm committed Sep 9, 2024
    Configuration menu
    Copy the full SHA
    97df8fb View commit details
    Browse the repository at this point in the history