aboutsummaryrefslogtreecommitdiff
path: root/contrib/plugins/Makefile
diff options
context:
space:
mode:
authorGreg Manning <gmanning@rapitasystems.com>2023-11-06 18:51:05 +0000
committerAlex Bennée <alex.bennee@linaro.org>2023-11-08 15:15:23 +0000
commitd5f207ea47c19e8bb15df9e7a7c8543a1ed02095 (patch)
tree5c89d04fbd603beee5d0dda1c37a19e848dc98c9 /contrib/plugins/Makefile
parent330fe3b03f6451889bec6f5c9f7e8bb5009c80c3 (diff)
downloadqemu-d5f207ea47c19e8bb15df9e7a7c8543a1ed02095.zip
qemu-d5f207ea47c19e8bb15df9e7a7c8543a1ed02095.tar.gz
qemu-d5f207ea47c19e8bb15df9e7a7c8543a1ed02095.tar.bz2
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 <gmanning@rapitasystems.com> Reviewed-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20231102172053.17692-4-gmanning@rapitasystems.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20231106185112.2755262-16-alex.bennee@linaro.org>
Diffstat (limited to 'contrib/plugins/Makefile')
-rw-r--r--contrib/plugins/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/plugins/Makefile b/contrib/plugins/Makefile
index 751fa38..1783750 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