[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 28/29] plugins: disable lockstep plugin on windows
From: |
Alex Bennée |
Subject: |
[PATCH 28/29] plugins: disable lockstep plugin on windows |
Date: |
Fri, 3 Nov 2023 19:59:55 +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>
---
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 16/29] gdbstub: Change gdb_get_reg_cb and gdb_set_reg_cb, (continued)
- [PATCH 21/29] gdbstub: expose api to find registers, Alex Bennée, 2023/11/03
- [PATCH 24/29] plugins: add an API to read registers, Alex Bennée, 2023/11/03
- [PATCH 28/29] plugins: disable lockstep plugin on windows,
Alex Bennée <=
- [PATCH 20/29] gdbstub: Add members to identify registers to GDBFeature, Alex Bennée, 2023/11/03
- [PATCH 19/29] hw/core/cpu: Remove gdb_get_dynamic_xml member, Alex Bennée, 2023/11/03
- [PATCH 29/29] plugins: allow plugins to be enabled on windows, Alex Bennée, 2023/11/03
- [PATCH 27/29] plugins: make test/example plugins work on windows, Alex Bennée, 2023/11/03
- [PATCH 18/29] gdbstub: Infer number of core registers from XML, Alex Bennée, 2023/11/03