Skip to content

Commit

Permalink
Fix android emulator darwin_arm64 select
Browse files Browse the repository at this point in the history
This fixes this condition printing a strange error if you try to run
these on macOS. In general this still doesn't work because of
#7069 but if we ever want to
support it this is a pre-requisite to supporting arm macs

Closes #15092.

PiperOrigin-RevId: 444912275
  • Loading branch information
keith authored and Copybara-Service committed Apr 27, 2022
1 parent 649521a commit 73f1ecb
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ filegroup(
filegroup(
name = "qemu2_x86",
srcs = ["emulator/emulator"] + select({
"@bazel_tools//src/conditions:darwin": ["emulator/qemu/darwin-x86_64/qemu-system-i386"],
"@bazel_tools//src/conditions:darwin_x86_64": ["emulator/qemu/darwin-x86_64/qemu-system-i386"],
"@bazel_tools//src/conditions:darwin_arm64": ["emulator/qemu/darwin-aarch64/qemu-system-aarch64"],
"//conditions:default": ["emulator/qemu/linux-x86_64/qemu-system-i386"],
}),
)
Expand Down

0 comments on commit 73f1ecb

Please sign in to comment.