From: Greg Manning Date: Mon, 6 Nov 2023 18:51:05 +0000 (+0000) Subject: plugins: disable lockstep plugin on windows X-Git-Tag: v8.2.0-rc0~15^2~8 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d5f207ea47c19e8bb15df9e7a7c8543a1ed02095;p=thirdparty%2Fqemu.git plugins: disable lockstep plugin on windows The lockstep plugin uses unix sockets and would require a different communication mechanism to work on Windows. Signed-off-by: Greg Manning Reviewed-by: Alex Bennée Message-Id: <20231102172053.17692-4-gmanning@rapitasystems.com> Reviewed-by: Philippe Mathieu-Daudé Signed-off-by: Alex Bennée Message-Id: <20231106185112.2755262-16-alex.bennee@linaro.org> --- diff --git a/contrib/plugins/Makefile b/contrib/plugins/Makefile index 751fa38619b..1783750cf6b 100644 --- a/contrib/plugins/Makefile +++ b/contrib/plugins/Makefile @@ -17,7 +17,13 @@ NAMES += execlog NAMES += hotblocks NAMES += hotpages NAMES += howvec + +# The lockstep example communicates using unix sockets, +# and can't be easily made to work on windows. +ifneq ($(CONFIG_WIN32),y) NAMES += lockstep +endif + NAMES += hwprofile NAMES += cache NAMES += drcov