aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid S. Miller <davem@redhat.com>2008-04-15 04:11:45 +0000
committerDavid S. Miller <davem@redhat.com>2008-04-15 04:11:45 +0000
commit0297aed676b5ec1c7cd9d2085cd4a00b8673392b (patch)
tree16d4eab6ac94dea6085d5c8afc4706d979938f91
parent154e0e9aa714f93206c01ab62920a8ce9220fd9c (diff)
downloadgdb-0297aed676b5ec1c7cd9d2085cd4a00b8673392b.zip
gdb-0297aed676b5ec1c7cd9d2085cd4a00b8673392b.tar.gz
gdb-0297aed676b5ec1c7cd9d2085cd4a00b8673392b.tar.bz2
* readelf.c (get_gnu_elf_note_type): Recognize NT_GNU_GOLD_VERSION.
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/readelf.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 037549a..6876607 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2008-04-14 David S. Miller <davem@davemloft.net>
+
+ * readelf.c (get_gnu_elf_note_type): Recognize NT_GNU_GOLD_VERSION.
+
2008-04-11 Torleif Sandnes <torleif.sandnes@gmail.com>
* dwarf.c (display_debug_lines): Rename to
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 7b48470..b2f0d69 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -9799,6 +9799,8 @@ get_gnu_elf_note_type (unsigned e_type)
return _("NT_GNU_HWCAP (DSO-supplied software HWCAP info)");
case NT_GNU_BUILD_ID:
return _("NT_GNU_BUILD_ID (unique build ID bitstring)");
+ case NT_GNU_GOLD_VERSION:
+ return _("NT_GNU_GOLD_VERSION (gold version)");
default:
break;
}