]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
scripts/nsis.py: Tell makensis that WoA is 64 bit
authorStefan Weil <sw@weilnetz.de>
Tue, 9 Dec 2025 13:02:12 +0000 (14:02 +0100)
committerPhilippe Mathieu-Daudé <philmd@linaro.org>
Tue, 9 Dec 2025 19:56:14 +0000 (20:56 +0100)
This fixes some settings like the default installation path
for the QEMU installation on Windows on ARM (WoA).

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20251209130212.764443-1-sw@weilnetz.de>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
scripts/nsis.py

index 8f469634eb752a5b65d9b0b969d07ce9b53aa172..33069f4a86efe4249e1db0f4157ae8aaf2d422e7 100644 (file)
@@ -114,7 +114,7 @@ def main():
             "-DSRCDIR=" + args.srcdir,
             "-DBINDIR=" + destdir + prefix,
         ]
-        if args.cpu == "x86_64":
+        if args.cpu == "aarch64" or args.cpu == "x86_64":
             makensis += ["-DW64"]
         makensis += ["-DDLLDIR=" + dlldir]