You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was looking up info on GDB's .gdb_index section today and found that it has been superseded by the DWARF 5 .debug_names section. gdb ships a helper tool (gdb-add-index) that can generate and add a .gdb_index section to a binary and in recent versions (I'm using gdb 8.3 on Ubuntu) it can instead generate .debug_names:
I was looking up info on GDB's
.gdb_index
section today and found that it has been superseded by the DWARF 5.debug_names
section. gdb ships a helper tool (gdb-add-index
) that can generate and add a.gdb_index
section to a binary and in recent versions (I'm using gdb 8.3 on Ubuntu) it can instead generate.debug_names
:The
.debug_names
section format is specified in the DWARF 5 spec section 6.1.1, "Lookup by Name".The text was updated successfully, but these errors were encountered: