From c94c7ff2bb7cdc8638d2155b8eefd8e2538eea50 Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Fri, 13 Mar 2015 10:32:45 -0700 Subject: [PATCH] Add some GNU specific elf constants. Change-Id: I6c668463a27a641c9a280ce1937857d622344ff8 --- libc/include/elf.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libc/include/elf.h b/libc/include/elf.h index 41680a521..ee53ad14b 100644 --- a/libc/include/elf.h +++ b/libc/include/elf.h @@ -125,4 +125,8 @@ typedef struct { /* The kernel uses NT_PRFPREG but glibc also offers NT_FPREGSET */ #define NT_FPREGSET NT_PRFPREG +#define ELF_NOTE_GNU "GNU" + +#define NT_GNU_BUILD_ID 3 + #endif /* _ELF_H */