diff options
author | Kai Tietz <kai.tietz@onevision.com> | 2013-02-15 11:08:01 +0000 |
---|---|---|
committer | Kai Tietz <kai.tietz@onevision.com> | 2013-02-15 11:08:01 +0000 |
commit | b138e9bffdf97f9c172c1138418c3670178d7c7b (patch) | |
tree | 26607fcb6388655b9323d4830900b29a9743f894 /ld | |
parent | 4c261dff5179ee3d16b45f9346f9914d5a59bd07 (diff) | |
download | gdb-b138e9bffdf97f9c172c1138418c3670178d7c7b.zip gdb-b138e9bffdf97f9c172c1138418c3670178d7c7b.tar.gz gdb-b138e9bffdf97f9c172c1138418c3670178d7c7b.tar.bz2 |
* scripttempl/pep.sc (.xdata): Merge .xdata* into .xdata section.
(.pdata): Merge .pdata* into .pdata section.
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__)} : |