summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/SymbolFileDWARFProperties.td
blob: ef6ae349858820c69cb15f16b709f623f104212b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
include "../../../../include/lldb/Core/PropertiesBase.td"

let Definition = "symbolfiledwarf" in {
  def SymLinkPaths: Property<"comp-dir-symlink-paths", "FileSpecList">,
    Global,
    DefaultStringValue<"">,
    Desc<"If the DW_AT_comp_dir matches any of these paths the symbolic links will be resolved at DWARF parse time.">;
  def IgnoreIndexes: Property<"ignore-file-indexes", "Boolean">,
    Global,
    DefaultFalse,
    Desc<"Ignore indexes present in the object files and always index DWARF manually.">;
}