[Lldb-commits] [lldb] [LLDB][Docs] List available settings (PR #168245)
David Spickett via lldb-commits
lldb-commits at lists.llvm.org
Thu Feb 12 07:05:10 PST 2026
================
@@ -6,6 +6,14 @@ lldb_tablegen(ProcessKDPPropertiesEnum.inc -gen-lldb-property-enum-defs
SOURCE ProcessKDPProperties.td
TARGET LLDBPluginProcessMacOSXKernelPropertiesEnumGen)
+lldb_tablegen(ProcessKDPProperties.json -gen-lldb-property-docs-json
+ SOURCE ProcessKDPProperties.td
+ TARGET LLDBPluginProcessMacOSXKernelPropertiesJsonGen)
+
+if (NOT CMAKE_SYSTEM_NAME MATCHES "Darwin")
+ return()
+endif()
----------------
DavidSpickett wrote:
Did you change something at a higher level so that this file is now always sourced? Just wondering why we didn't need the system name check previously.
Good thought to do this though, we want all possible settings in the docs, and I wouldn't have thought to check this.
https://github.com/llvm/llvm-project/pull/168245
More information about the lldb-commits
mailing list