diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 4 | ||||
-rw-r--r-- | ld/scripttempl/elf.sc | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index cd05d9d..89016cc 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,7 @@ +2009-06-06 H.J. Lu <hongjiu.lu@intel.com> + + * scripttempl/elf.sc: Add .rel.ifunc and .rela.ifunc. + 2009-06-05 H.J. Lu <hongjiu.lu@intel.com> * scripttempl/elf.sc: Remove .rel.ifunc.dyn and .rela.ifunc.dyn. diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index 6d7652b..0d6cae9 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -326,6 +326,8 @@ eval $COMBRELOCCAT <<EOF .rel.bss ${RELOCATING-0} : { *(.rel.bss${RELOCATING+ .rel.bss.* .rel.gnu.linkonce.b.*}) } .rela.bss ${RELOCATING-0} : { *(.rela.bss${RELOCATING+ .rela.bss.* .rela.gnu.linkonce.b.*}) } ${REL_LARGE} + .rel.ifunc ${RELOCATING-0} : { *(.rel.ifunc) } + .rela.ifunc ${RELOCATING-0} : { *(.rela.ifunc) } EOF if [ -n "$COMBRELOC" ]; then |