Require a 64-bit host binary to spawn a 64-bit guest. For HVF this is trivially true because macOS 11 dropped support for 32-bit applications entirely.
Signed-off-by: Richard Henderson <richard.hender...@linaro.org> --- meson.build | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/meson.build b/meson.build index 0ca83135e2..c80382befd 100644 --- a/meson.build +++ b/meson.build @@ -319,13 +319,16 @@ else endif accelerator_targets += { 'CONFIG_XEN': xen_targets } -if cpu in ['aarch64'] +if cpu == 'aarch64' accelerator_targets += { 'CONFIG_HVF': ['aarch64-softmmu'] } -endif - -if cpu in ['x86', 'x86_64'] +elif cpu == 'x86' + accelerator_targets += { + 'CONFIG_NVMM': ['i386-softmmu'], + 'CONFIG_WHPX': ['i386-softmmu'], + } +elif cpu == 'x86_64' accelerator_targets += { 'CONFIG_HVF': ['x86_64-softmmu'], 'CONFIG_NVMM': ['i386-softmmu', 'x86_64-softmmu'], -- 2.43.0