Author: Nerixyz Date: 2026-02-11T08:25:04Z New Revision: ee92a9e1f4cb94f645243a90f864c46615aafcbf
URL: https://github.com/llvm/llvm-project/commit/ee92a9e1f4cb94f645243a90f864c46615aafcbf DIFF: https://github.com/llvm/llvm-project/commit/ee92a9e1f4cb94f645243a90f864c46615aafcbf.diff LOG: [LLDB] Fix KDP plugin path (#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`. Added: Modified: lldb/source/Plugins/Process/MacOSX-Kernel/ProcessKDPProperties.td Removed: ################################################################################ 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
