Support arm64e for osx

Add arm64e to choices variable
This commit is contained in:
Taewoo Kim 2021-05-17 13:07:02 +02:00 committed by Changming Sun
parent e05b15175d
commit 1e6ad669cf

View file

@ -324,7 +324,7 @@ def parse_arguments():
parser.add_argument(
"--osx_arch",
default="arm64" if platform.machine() == "arm64" else "x86_64",
choices=["arm64", "x86_64"],
choices=["arm64", "arm64e", "x86_64"],
help="Specify the Target specific architectures for macOS and iOS, This is only supported on MacOS")
parser.add_argument(
"--apple_deploy_target", type=str,