mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
Allow readelf to recognise GO buildid notes.
binutils * readelf.c (get_note_type): Add support for NT_GO_BUILDID. include * elf/common.h (NT_GO_BUILDID): Define.
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
2021-06-15 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* readelf.c (get_note_type): Add support for NT_GO_BUILDID.
|
||||
|
||||
2021-06-15 Alan Modra <amodra@gmail.com>
|
||||
|
||||
* readelf.c (locate_dynamic_section, is_pie): New functions.
|
||||
|
@ -18859,6 +18859,8 @@ get_note_type (Filedata * filedata, unsigned e_type)
|
||||
return _("OPEN");
|
||||
case NT_GNU_BUILD_ATTRIBUTE_FUNC:
|
||||
return _("func");
|
||||
case NT_GO_BUILDID:
|
||||
return _("GO BUILDID");
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user