diff options
author | Roland McGrath <roland@redhat.com> | 2010-07-07 16:06:12 -0700 |
---|---|---|
committer | Roland McGrath <roland@redhat.com> | 2010-07-07 16:06:12 -0700 |
commit | 804e9ca4d644e64a6125307cbf0a0b89477d7611 (patch) | |
tree | 9cdb92e9cf22849b1a33c44a7325ede6a1b56269 /libebl | |
parent | 0cf762c2d960cd64e72d8637db0c38102bd6a4ee (diff) | |
download | elfutils-804e9ca4d644e64a6125307cbf0a0b89477d7611.tar.gz |
Consider .gdb_index as a debugging section.
Diffstat (limited to 'libebl')
-rw-r--r-- | libebl/ChangeLog | 4 | ||||
-rw-r--r-- | libebl/eblopenbackend.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/libebl/ChangeLog b/libebl/ChangeLog index ed9361c1..96f70ff8 100644 --- a/libebl/ChangeLog +++ b/libebl/ChangeLog @@ -1,3 +1,7 @@ +2010-07-07 Roland McGrath <roland@redhat.com> + + * eblopenbackend.c (default_debugscn_p): Match .gdb_index section. + 2010-02-15 Roland McGrath <roland@redhat.com> * Makefile.am: Use config/eu.am for common stuff. diff --git a/libebl/eblopenbackend.c b/libebl/eblopenbackend.c index edd8c4a7..e11ff067 100644 --- a/libebl/eblopenbackend.c +++ b/libebl/eblopenbackend.c @@ -662,6 +662,8 @@ default_debugscn_p (const char *name) ".debug_pubtypes", /* DWARF 4 */ ".debug_types", + /* GDB DWARF 4 extension */ + ".gdb_index", /* SGI/MIPS DWARF 2 extensions */ ".debug_weaknames", ".debug_funcnames", |