diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/scripttempl/pep.sc | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 60d7ea0..166015b 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2013-02-15 Kai Tietz <ktietz@redhat.com> + + * scripttempl/pep.sc (.xdata): Merge .xdata* into .xdata section. + (.pdata): Merge .pdata* into .pdata section. + 2013-02-11 Alan Modra <amodra@gmail.com> * ldlang.c (get_init_priority): Comment typo. diff --git a/ld/scripttempl/pep.sc b/ld/scripttempl/pep.sc index 9e86a90..884baaf 100644 --- a/ld/scripttempl/pep.sc +++ b/ld/scripttempl/pep.sc @@ -127,12 +127,12 @@ SECTIONS .pdata ${RELOCATING+BLOCK(__section_alignment__)} : { - *(.pdata) + *(.pdata*) } .xdata ${RELOCATING+BLOCK(__section_alignment__)} : { - *(.xdata) + *(.xdata*) } .bss ${RELOCATING+BLOCK(__section_alignment__)} : |