mirror of
https://github.com/xemu-project/xemu.git
synced 2026-07-11 01:24:41 +02:00
scripts/nsis.py: Tell makensis that WoA is 64 bit
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>
This commit is contained in:
committed by
Philippe Mathieu-Daudé
parent
4fdff25625
commit
e742b7bdc2
+1
-1
@@ -114,7 +114,7 @@ def main():
|
|||||||
"-DSRCDIR=" + args.srcdir,
|
"-DSRCDIR=" + args.srcdir,
|
||||||
"-DBINDIR=" + destdir + prefix,
|
"-DBINDIR=" + destdir + prefix,
|
||||||
]
|
]
|
||||||
if args.cpu == "x86_64":
|
if args.cpu == "aarch64" or args.cpu == "x86_64":
|
||||||
makensis += ["-DW64"]
|
makensis += ["-DW64"]
|
||||||
makensis += ["-DDLLDIR=" + dlldir]
|
makensis += ["-DDLLDIR=" + dlldir]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user