3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-22 20:32:05 +00:00

update build-win-signed-cmake

Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2024-02-03 11:46:11 -08:00
parent e398f84e85
commit e295ac93af
3 changed files with 7 additions and 3 deletions

View file

@ -196,7 +196,7 @@ def mk_build_dir(arch):
if not check_build_dir(build_path) or FORCE_MK:
mk_dir(build_path)
if arch == "arm64":
arch = "x64_arm64"
arch = "amd64_arm64"
cmds = []
cmds.append(f"cd {build_path}")
@ -266,7 +266,7 @@ def build_z3(arch):
print("build z3")
build_dir = get_build_dir(arch)
if arch == "arm64":
arch = "x64_arm64"
arch = "amd64_arm64"
cmds = []
cmds.append('call "%VCINSTALLDIR%Auxiliary\\build\\vcvarsall.bat" ' + arch)
cmds.append('cd %s' % build_dir)