Re: [RFC PATCH 01/25] accel: Add Meson and config support for MSHV accelerator

2025-05-20 Thread Paolo Bonzini
On 5/20/25 13:50, Daniel P. Berrangé wrote: +if get_option('mshv').allowed() and host_os == 'linux' + if get_option('mshv').enabled() and host_machine.cpu() != 'x86_64' +error('mshv accelerator requires x64_64 host') + endif + accelerators += 'CONFIG_MSHV' This enables MSHV for non-x86 w

[RFC PATCH 01/25] accel: Add Meson and config support for MSHV accelerator

2025-05-20 Thread Magnus Kulke
Introduce a Meson feature option and default-config entry to allow building QEMU with MSHV (Microsoft Hypervisor) acceleration support. This is the first step toward implementing an MSHV backend in QEMU. Signed-off-by: Magnus Kulke --- accel/Kconfig | 3 +++ meson.build

Re: [RFC PATCH 01/25] accel: Add Meson and config support for MSHV accelerator

2025-05-20 Thread Daniel P . Berrangé
On Tue, May 20, 2025 at 01:29:54PM +0200, Magnus Kulke wrote: > Introduce a Meson feature option and default-config entry to allow > building QEMU with MSHV (Microsoft Hypervisor) acceleration support. > > This is the first step toward implementing an MSHV backend in QEMU. > > Signed-off-by: Magn