diff options
author | Nick Clifton <nickc@redhat.com> | 2021-06-15 11:43:43 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2021-06-15 11:43:43 +0100 |
commit | c8795e1f2f4d8617f22c3bd40dad75c75482e164 (patch) | |
tree | b34062544134637a2effd75950506f851fba125f /include/elf | |
parent | b00af7c8c615891f24a21d79a5bea35ef82bf252 (diff) | |
download | gdb-c8795e1f2f4d8617f22c3bd40dad75c75482e164.zip gdb-c8795e1f2f4d8617f22c3bd40dad75c75482e164.tar.gz gdb-c8795e1f2f4d8617f22c3bd40dad75c75482e164.tar.bz2 |
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.
Diffstat (limited to 'include/elf')
-rw-r--r-- | include/elf/common.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/elf/common.h b/include/elf/common.h index 24d0a09..58b0936 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -748,6 +748,7 @@ #define NT_VERSION 1 /* Contains a version string. */ #define NT_ARCH 2 /* Contains an architecture string. */ +#define NT_GO_BUILDID 4 /* Contains GO buildid data. */ /* Values for notes in non-core files using name "GNU". */ |