qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH-for-10.2] scripts/nsis.py: Tell makensis that WoA is 64 bit
@ 2025-12-09 13:02 Stefan Weil via
  2025-12-09 14:18 ` Philippe Mathieu-Daudé
  2025-12-10 10:22 ` Michael Tokarev
  0 siblings, 2 replies; 3+ messages in thread
From: Stefan Weil via @ 2025-12-09 13:02 UTC (permalink / raw)
  To: John Snow, Cleber Rosa; +Cc: qemu-devel, qemu-trivial, Stefan Weil

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>
---
 scripts/nsis.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/nsis.py b/scripts/nsis.py
index 8f469634eb..33069f4a86 100644
--- a/scripts/nsis.py
+++ b/scripts/nsis.py
@@ -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]
 
-- 
2.47.3



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-12-10 10:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-09 13:02 [PATCH-for-10.2] scripts/nsis.py: Tell makensis that WoA is 64 bit Stefan Weil via
2025-12-09 14:18 ` Philippe Mathieu-Daudé
2025-12-10 10:22 ` Michael Tokarev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).