3
0
Fork 0
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:
Nikolaj Bjorner 2022-04-08 06:35:25 +02:00
parent 2e91d66888
commit 83d2aa85ec
2 changed files with 22 additions and 2 deletions

View file

@ -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)