15 lines · plain
1include "../../../../include/lldb/Core/PropertiesBase.td"2 3let Definition = "symbolfilepdb" in {4 def Reader: Property<"reader", "Enum">,5 Global,6 DefaultEnumValue<"ePDBReaderDefault">,7 EnumValues<"OptionEnumValues(g_pdb_reader_enums)">,8 Desc<"Selects the reader for PDB symbol files. "9 "The native PDB reader that uses LLVM's PDB support is always available (value: 'native'). "10 "Secondly, the DIA PDB reader is only available if LLVM was comppiled with Microsoft's DIA SDK on Windows (value: 'DIA'). "11 "By default, the DIA PDB reader is used if available. "12 "The LLDB_USE_NATIVE_PDB_READER environment variable can be used to switch to the native reader when this setting has the default value. "13 "Otherwise, the setting always has priority.">;14}15