On Thu, Aug 07, 2025 at 04:39:26PM +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. > [...] > if get_option('whpx').allowed() and host_os == 'windows' > if get_option('whpx').enabled() and host_machine.cpu() != 'x86_64' > error('WHPX requires 64-bit host') > @@ -4818,6 +4827,7 @@ if have_system > summary_info += {'HVF support': > config_all_accel.has_key('CONFIG_HVF')} > summary_info += {'WHPX support': > config_all_accel.has_key('CONFIG_WHPX')} > summary_info += {'NVMM support': > config_all_accel.has_key('CONFIG_NVMM')} > + summary_info += {'MSHV support': > config_all_accel.has_key('CONFIG_MSHV')}
Minor nit, one space too many here. Wei