[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 15/22] plugins: disable lockstep plugin on windows
From: |
Alex Bennée |
Subject: |
[PATCH 15/22] plugins: disable lockstep plugin on windows |
Date: |
Mon, 6 Nov 2023 18:51:05 +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>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20231103195956.1998255-29-alex.bennee@linaro.org>
---
contrib/plugins/Makefile | 6 ++++++
1 file changed, 6 insertions(+)
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
- [PATCH 11/22] cpu: Call plugin hooks only when ready, (continued)
- [PATCH 11/22] cpu: Call plugin hooks only when ready, Alex Bennée, 2023/11/06
- [PATCH 13/22] plugins: add dllexport and dllimport to api funcs, Alex Bennée, 2023/11/06
- [PATCH 21/22] mailmap: fixup some more corrupted author fields, Alex Bennée, 2023/11/06
- [PATCH 20/22] contrib/gitdm: add Daynix to domain-map, Alex Bennée, 2023/11/06
- [PATCH 19/22] contrib/gitdm: map HiSilicon to Huawei, Alex Bennée, 2023/11/06
- [PATCH 18/22] contrib/gitdm: add domain-map for Cestc, Alex Bennée, 2023/11/06
- [PATCH 16/22] plugins: allow plugins to be enabled on windows, Alex Bennée, 2023/11/06
- [PATCH 15/22] plugins: disable lockstep plugin on windows,
Alex Bennée <=
- [PATCH 22/22] Revert "tests/tcg/nios2: Re-enable linux-user tests", Alex Bennée, 2023/11/06
- [PATCH 17/22] contrib/gitdm: Add Rivos Inc to the domain map, Alex Bennée, 2023/11/06