diff options
author | Szabolcs Nagy <nsz@port70.net> | 2016-04-20 13:19:27 +0200 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2016-07-03 16:15:12 -0400 |
commit | 7c3b67234c859f98a6365d215c5362c73eed5765 (patch) | |
tree | 47524f9cc7359d8183b7e5d392cbceb4d376fc1c /include/elf.h | |
parent | af17dc40dd91fbfc5a0ca487c52f6c419567f967 (diff) | |
download | musl-7c3b67234c859f98a6365d215c5362c73eed5765.tar.gz musl-7c3b67234c859f98a6365d215c5362c73eed5765.tar.bz2 musl-7c3b67234c859f98a6365d215c5362c73eed5765.tar.xz musl-7c3b67234c859f98a6365d215c5362c73eed5765.zip |
add DT_MIPS_RLD_MAP_REL to elf.h
marks different RLD_MAP for debugging PIE binaries.
Diffstat (limited to 'include/elf.h')
-rw-r--r-- | include/elf.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/elf.h b/include/elf.h index 223a3431..2d57dfe6 100644 --- a/include/elf.h +++ b/include/elf.h @@ -1487,7 +1487,8 @@ typedef struct { #define DT_MIPS_PLTGOT 0x70000032 #define DT_MIPS_RWPLT 0x70000034 -#define DT_MIPS_NUM 0x35 +#define DT_MIPS_RLD_MAP_REL 0x70000035 +#define DT_MIPS_NUM 0x36 |