mirror of
https://github.com/Z3Prover/z3
synced 2025-06-06 14:13:23 +00:00
add arm64 build path
This commit is contained in:
parent
2e91d66888
commit
83d2aa85ec
2 changed files with 22 additions and 2 deletions
|
@ -72,6 +72,7 @@ def parse_options():
|
|||
'nojava',
|
||||
'nodotnet',
|
||||
'dotnet-key=',
|
||||
'arch=',
|
||||
'githash',
|
||||
'nopython'
|
||||
])
|
||||
|
@ -96,6 +97,11 @@ def parse_options():
|
|||
JAVA_ENABLED = False
|
||||
elif opt == '--githash':
|
||||
GIT_HASH = True
|
||||
elif opt == '--arch':
|
||||
if arg == "arm64":
|
||||
mk_util.IS_ARCH_ARM64 = True
|
||||
else:
|
||||
raise MKException(f"Invalid architecture directive '{arg}'. Legal directives: arm64")
|
||||
else:
|
||||
raise MKException("Invalid command line option '%s'" % opt)
|
||||
set_build_dir(path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue