Skip to content

Commit 531df65

Browse files
Googlercopybara-github
authored andcommitted
Add watchos_device_arm64e CPU
PiperOrigin-RevId: 478914204 Change-Id: I0973c5a6a52f31ae8f54bf11a3b8780e1ddf8d89
1 parent c3425fe commit 531df65

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/main/java/com/google/devtools/build/lib/rules/apple/ApplePlatform.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ public enum ApplePlatform implements ApplePlatformApi {
4848
private static final ImmutableSet<String> WATCHOS_SIMULATOR_TARGET_CPUS =
4949
ImmutableSet.of("watchos_i386", "watchos_x86_64", "watchos_arm64");
5050
private static final ImmutableSet<String> WATCHOS_DEVICE_TARGET_CPUS =
51-
ImmutableSet.of("watchos_armv7k", "watchos_arm64_32", "watchos_device_arm64");
51+
ImmutableSet.of(
52+
"watchos_armv7k", "watchos_arm64_32", "watchos_device_arm64", "watchos_device_arm64e");
5253
private static final ImmutableSet<String> TVOS_SIMULATOR_TARGET_CPUS =
5354
ImmutableSet.of("tvos_x86_64", "tvos_sim_arm64");
5455
private static final ImmutableSet<String> TVOS_DEVICE_TARGET_CPUS =

0 commit comments

Comments
 (0)