xref: /openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/MacOSX/PlatformMacOSXProperties.td (revision 1a8dbaac879b9f3335ad7fb25429ce63ac1d6bac)
1include "../../../../include/lldb/Core/PropertiesBase.td"
2
3let Definition = "platformdarwinkernel" in {
4  def SearchForKexts: Property<"search-locally-for-kexts", "Boolean">,
5    Global,
6    DefaultTrue,
7    Desc<"Automatically search for kexts on the local system when doing kernel debugging.">;
8  def KextDirectories: Property<"kext-directories", "FileSpecList">,
9    DefaultStringValue<"">,
10    Desc<"Directories/KDKs to search for kexts in when starting a kernel debug session.">;
11}
12