diff options
Diffstat (limited to 'elfcpp')
-rw-r--r-- | elfcpp/ChangeLog | 4 | ||||
-rw-r--r-- | elfcpp/elfcpp.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog index fa8594e..62e21b5 100644 --- a/elfcpp/ChangeLog +++ b/elfcpp/ChangeLog @@ -1,5 +1,9 @@ 2016-06-20 Vladimir Radosavljevic <Vladimir.Radosavljevic@imgtec.com> + * elfcpp.h (DT_MIPS_RLD_MAP_REL): New enum constant. + +2016-06-20 Vladimir Radosavljevic <Vladimir.Radosavljevic@imgtec.com> + * mips.h (R_MIPS_PC21_S2, R_MIPS_PC26_S2, R_MIPS_PC18_S3, R_MIPS_PC19_S2, R_MIPS_PCHI16, R_MIPS_PCLO16): New enums for Mips32r6 and Mips64r6 relocations. diff --git a/elfcpp/elfcpp.h b/elfcpp/elfcpp.h index f39a135..7469bd8 100644 --- a/elfcpp/elfcpp.h +++ b/elfcpp/elfcpp.h @@ -868,6 +868,8 @@ enum DT DT_MIPS_PLTGOT = 0x70000032, // Points to the base of a writable PLT. DT_MIPS_RWPLT = 0x70000034, + // Relative offset of run time loader map, used for debugging. + DT_MIPS_RLD_MAP_REL = 0x70000035, DT_AUXILIARY = 0x7ffffffd, DT_USED = 0x7ffffffe, |