From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: pbonzini@redhat.com, mark.cave-ayland@ilande.co.uk,
berrange@redhat.com, philmd@linaro.org, thuth@redhat.com
Subject: [PATCH v4 3/9] meson: Disallow 64-bit on 32-bit Xen emulation
Date: Fri, 7 Feb 2025 13:06:49 -0800 [thread overview]
Message-ID: <20250207210655.16717-4-richard.henderson@linaro.org> (raw)
In-Reply-To: <20250207210655.16717-1-richard.henderson@linaro.org>
Require a 64-bit host binary to spawn a 64-bit guest.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
meson.build | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/meson.build b/meson.build
index 1af8aeb194..911955cfa8 100644
--- a/meson.build
+++ b/meson.build
@@ -304,9 +304,14 @@ else
endif
accelerator_targets = { 'CONFIG_KVM': kvm_targets }
-if cpu in ['x86', 'x86_64']
+if cpu == 'x86'
+ xen_targets = ['i386-softmmu']
+elif cpu == 'x86_64'
xen_targets = ['i386-softmmu', 'x86_64-softmmu']
-elif cpu in ['arm', 'aarch64']
+elif cpu == 'arm'
+ # i386 emulator provides xenpv machine type for multiple architectures
+ xen_targets = ['i386-softmmu']
+elif cpu == 'aarch64'
# i386 emulator provides xenpv machine type for multiple architectures
xen_targets = ['i386-softmmu', 'x86_64-softmmu', 'aarch64-softmmu']
else
--
2.43.0
next prev parent reply other threads:[~2025-02-07 21:07 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-02-07 21:06 [PATCH v4 0/9] meson: Deprecate 32-bit host support Richard Henderson
2025-02-07 21:06 ` [PATCH v4 1/9] meson: Drop tcg as a module Richard Henderson
2025-02-07 21:06 ` [PATCH v4 2/9] meson: Disallow 64-bit on 32-bit KVM emulation Richard Henderson
2025-02-07 21:06 ` Richard Henderson [this message]
2025-02-07 21:06 ` [PATCH v4 4/9] meson: Disallow 64-bit on 32-bit HVF/NVMM/WHPX emulation Richard Henderson
2025-02-08 16:43 ` Philippe Mathieu-Daudé
2025-02-09 18:39 ` Phil Dennis-Jordan
2025-02-07 21:06 ` [PATCH v4 5/9] gitlab-ci: Replace aarch64 with arm in cross-i686-tci build Richard Henderson
2025-02-07 21:06 ` [PATCH v4 6/9] configure: Define TARGET_LONG_BITS in configs/targets/*.mak Richard Henderson
2025-02-07 21:06 ` [PATCH v4 7/9] target/*: Remove TARGET_LONG_BITS from cpu-param.h Richard Henderson
2025-02-07 21:06 ` [PATCH v4 8/9] meson: Disallow 64-bit on 32-bit emulation Richard Henderson
2025-02-08 16:42 ` Philippe Mathieu-Daudé
2025-02-07 21:06 ` [PATCH v4 9/9] meson: Deprecate 32-bit host support Richard Henderson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250207210655.16717-4-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=berrange@redhat.com \
--cc=mark.cave-ayland@ilande.co.uk \
--cc=pbonzini@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).