https://github.com/Nerixyz created https://github.com/llvm/llvm-project/pull/180897
This should fix a failure on the macOS buildbots (see https://github.com/llvm/llvm-project/pull/179524#issuecomment-3882784085). I can't test this, but the only plugins not enabled on Linux and Windows are `ProcessKDP`, `PlatformDarwin`, and `PlatformDarwinKernel`. Looking at the path for KDP, it uses `GetPluginNameStatic` as the last name in the path. This is `kdp-remote` instead of `kdp`. >From c002fd6f52e4f57f058108600ef50d178da05db8 Mon Sep 17 00:00:00 2001 From: Nerixyz <[email protected]> Date: Wed, 11 Feb 2026 09:17:49 +0100 Subject: [PATCH] [LLDB] Fix KDP plugin path --- .../Plugins/Process/MacOSX-Kernel/ProcessKDPProperties.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPProperties.td b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPProperties.td index 8e43d071e175e..9a2f1f435d926 100644 --- a/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPProperties.td +++ b/lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPProperties.td @@ -1,6 +1,6 @@ include "../../../../include/lldb/Core/PropertiesBase.td" -let Definition = "processkdp", Path = "plugin.process.kdp" in { +let Definition = "processkdp", Path = "plugin.process.kdp-remote" in { def KDPPacketTimeout: Property<"packet-timeout", "UInt64">, Global, DefaultUnsignedValue<5>, _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
