mirror of
https://github.com/Z3Prover/z3
synced 2025-07-22 20:32:05 +00:00
arm64
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3821eb4134
commit
91ca02864c
2 changed files with 13 additions and 1 deletions
|
@ -181,7 +181,9 @@ def get_os_name():
|
|||
|
||||
def get_z3_name():
|
||||
major, minor, build, revision = get_version()
|
||||
if sys.maxsize >= 2**32:
|
||||
if mk_util.IS_ARCH_ARM64:
|
||||
platform = "arm64"
|
||||
elif sys.maxsize >= 2**32:
|
||||
platform = "x64"
|
||||
else:
|
||||
platform = "x86"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue