[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 15/23] plugins: disable lockstep plugin on windows
|
From: |
Alex Bennée |
|
Subject: |
[PULL 15/23] plugins: disable lockstep plugin on windows |
|
Date: |
Tue, 7 Nov 2023 14:23:46 +0000 |
From: Greg Manning <gmanning@rapitasystems.com>
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>
diff --git a/contrib/plugins/Makefile b/contrib/plugins/Makefile
index 751fa38619..1783750cf6 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
--
2.39.2
- [PULL 10/23] gdbstub: Introduce GDBFeatureBuilder, (continued)
[PULL 14/23] plugins: make test/example plugins work on windows, Alex Bennée, 2023/11/07
[PULL 13/23] plugins: add dllexport and dllimport to api funcs, Alex Bennée, 2023/11/07
[PULL 15/23] plugins: disable lockstep plugin on windows,
Alex Bennée <=
[PULL 11/23] cpu: Call plugin hooks only when ready, Alex Bennée, 2023/11/07
[PULL 16/23] gitlab: add dlltool to Windows CI, Alex Bennée, 2023/11/07
[PULL 22/23] mailmap: fixup some more corrupted author fields, Alex Bennée, 2023/11/07
[PULL 17/23] plugins: allow plugins to be enabled on windows, Alex Bennée, 2023/11/07
[PULL 07/23] tests/avocado: update the tcg_plugins test, Alex Bennée, 2023/11/07
[PULL 09/23] gdbstub: Introduce gdb_find_static_feature(), Alex Bennée, 2023/11/07
[PULL 21/23] contrib/gitdm: add Daynix to domain-map, Alex Bennée, 2023/11/07
[PULL 23/23] Revert "tests/tcg/nios2: Re-enable linux-user tests", Alex Bennée, 2023/11/07
[PULL 19/23] contrib/gitdm: add domain-map for Cestc, Alex Bennée, 2023/11/07
[PULL 18/23] contrib/gitdm: Add Rivos Inc to the domain map, Alex Bennée, 2023/11/07