diff options
author | Michael Sartain <mikesart@valvesoftware.com> | 2013-07-17 00:26:30 +0000 |
---|---|---|
committer | Michael Sartain <mikesart@valvesoftware.com> | 2013-07-17 00:26:30 +0000 |
commit | 3cf443ddd63fa219f3681ec3ca837cc1c0dc0829 (patch) | |
tree | 41474f4cf6264ad8af717f0bdec6a71714c7ec3a /lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | |
parent | dfb7687162d9e19313d4bf97a68324d2221a3a36 (diff) | |
download | bcm5719-llvm-3cf443ddd63fa219f3681ec3ca837cc1c0dc0829.tar.gz bcm5719-llvm-3cf443ddd63fa219f3681ec3ca837cc1c0dc0829.zip |
simple plugin now works with Linux fix assert in SetPluginInfo implement Linux ePathTypeLLDBSystemPlugins and ePathTypeLLDBUserPlugins implement Linux Host::Backtrace and Host::GetEnvironment add .gnu_debugdata comment
Differential Revision: http://llvm-reviews.chandlerc.com/D1159
llvm-svn: 186475
Diffstat (limited to 'lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp')
-rw-r--r-- | lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp index 251b8f9fc9d..2e9f6903280 100644 --- a/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp +++ b/lldb/source/Plugins/ObjectFile/ELF/ObjectFileELF.cpp @@ -911,7 +911,8 @@ ObjectFileELF::CreateSections(SectionList &unified_section_list) // .debug_pubtypes – Lookup table for mapping type names to compilation units // .debug_ranges – Address ranges used in DW_AT_ranges attributes // .debug_str – String table used in .debug_info - // MISSING? .debug-index http://src.chromium.org/viewvc/chrome/trunk/src/build/gdb-add-index?pathrev=144644 + // MISSING? .gnu_debugdata - "mini debuginfo / MiniDebugInfo" section, http://sourceware.org/gdb/onlinedocs/gdb/MiniDebugInfo.html + // MISSING? .debug-index - http://src.chromium.org/viewvc/chrome/trunk/src/build/gdb-add-index?pathrev=144644 // MISSING? .debug_types - Type descriptions from DWARF 4? See http://gcc.gnu.org/wiki/DwarfSeparateTypeInfo else if (name == g_sect_name_dwarf_debug_abbrev) sect_type = eSectionTypeDWARFDebugAbbrev; else if (name == g_sect_name_dwarf_debug_aranges) sect_type = eSectionTypeDWARFDebugAranges; |