mirror of
https://github.com/saymrwulf/onnxruntime.git
synced 2026-07-30 20:18:08 +00:00
Support arm64e for osx
Add arm64e to choices variable
This commit is contained in:
parent
e05b15175d
commit
1e6ad669cf
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue