Skip to content

Commit

Permalink
Add support for new arm64e iOS Device architecture.
Browse files Browse the repository at this point in the history
RELNOTES: None
PiperOrigin-RevId: 229807657
  • Loading branch information
sergiocampama authored and weixiao-huang committed Jan 31, 2019
1 parent 503cdb0 commit 1c6e606
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public enum ApplePlatform implements ApplePlatformApi {
private static final ImmutableSet<String> IOS_SIMULATOR_TARGET_CPUS =
ImmutableSet.of("ios_x86_64", "ios_i386");
private static final ImmutableSet<String> IOS_DEVICE_TARGET_CPUS =
ImmutableSet.of("ios_armv6", "ios_arm64", "ios_armv7", "ios_armv7s");
ImmutableSet.of("ios_armv6", "ios_arm64", "ios_armv7", "ios_armv7s", "ios_arm64e");
private static final ImmutableSet<String> WATCHOS_SIMULATOR_TARGET_CPUS =
ImmutableSet.of("watchos_i386", "watchos_x86_64");
private static final ImmutableSet<String> WATCHOS_DEVICE_TARGET_CPUS =
Expand Down
1 change: 1 addition & 0 deletions tools/osx/crosstool/osx_archs.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ OSX_TOOLS_ARCHS = [
"armeabi-v7a",
"ios_armv7",
"ios_arm64",
"ios_arm64e",
"watchos_armv7k",
"watchos_arm64_32",
"tvos_arm64",
Expand Down

0 comments on commit 1c6e606

Please sign in to comment.