2009-07-26 Mark Wielaard <mjw@redhat.com>
+ * eblobjnote.c (ebl_object_note): Handle NT_GNU_GOLD_VERSION.
+
* eblobjnotetypename.c (ebl_object_note_type_name): Recognize
NT_GNU_GOLD_VERSION.
/* Print contents of object file note.
- Copyright (C) 2002, 2007 Red Hat, Inc.
+ Copyright (C) 2002, 2007, 2009 Red Hat, Inc.
This file is part of Red Hat elfutils.
Written by Ulrich Drepper <drepper@redhat.com>, 2002.
}
break;
+ case NT_GNU_GOLD_VERSION:
+ if (strcmp (name, "GNU") == 0 && descsz > 0)
+ /* A non-null terminated version string. */
+ printf ("%s%.*s\n",
+ gettext (" Version String: "), (int) descsz, desc);
+ break;
+
case NT_GNU_ABI_TAG:
if (strcmp (name, "GNU") == 0 && descsz >= 8 && descsz % 4 == 0)
{