On 8/2/25 18:17, Mohamed Mediouni wrote:
--- /dev/null
+++ b/accel/whpx/whpx-common.c
...
+bool whpx_allowed;
+static bool whp_dispatch_initialized;
+static HMODULE hWinHvPlatform;
+static HMODULE hWinHvEmulation;
+
+struct whpx_state whpx_global;
+struct WHPDispatch whp_dispatch;
You failed to remove these from target/i386/whpx/whpx-all.c.
I'm surprised you didn't receive a link error for at least whpx_allowed. I guess the
windows compiler doesn't support -fno-common? Or a compile-time error for the unused
static variables?
You need to make sure x86 still builds at every step.
r~