Nerixyz ee92a9e1f4
[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`.
2026-02-11 08:25:04 +00:00

9 lines
295 B
TableGen

include "../../../../include/lldb/Core/PropertiesBase.td"
let Definition = "processkdp", Path = "plugin.process.kdp-remote" in {
def KDPPacketTimeout: Property<"packet-timeout", "UInt64">,
Global,
DefaultUnsignedValue<5>,
Desc<"Specify the default packet timeout in seconds.">;
}