summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSXProperties.td
blob: 07e4e3e81d8c54378ffa43db4dec0a17401c0652 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
include "../../../../include/lldb/Core/PropertiesBase.td"

let Definition = "platformdarwinkernel" in {
  def SearchForKexts: Property<"search-locally-for-kexts", "Boolean">,
    Global,
    DefaultTrue,
    Desc<"Automatically search for kexts on the local system when doing kernel debugging.">;
  def KextDirectories: Property<"kext-directories", "FileSpecList">,
    DefaultStringValue<"">,
    Desc<"Directories/KDKs to search for kexts in when starting a kernel debug session.">;
}