Skip to content

Commit

Permalink
Fix ios_arm64e cpu value to match platforms cpu constraint (#254)
Browse files Browse the repository at this point in the history
This fixes so that rules_apple work with C++ toolchain resolution
enabled.

Failure example:
https://buildkite.com/bazel/bazelisk-plus-incompatible-flags/builds/1638#018a6805-45af-4dcc-a83b-3f3f3231713c

Tested manually.
  • Loading branch information
comius authored Sep 6, 2023
1 parent 96d7cff commit 97ac904
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configs/platforms.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ APPLE_PLATFORMS_CONSTRAINTS = {
],
"ios_arm64e": [
"@platforms//os:ios",
"@platforms//cpu:arm64",
"@platforms//cpu:arm64e",
"@build_bazel_apple_support//constraints:device",
],
"ios_x86_64": [
Expand Down

0 comments on commit 97ac904

Please sign in to comment.