diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/scripttempl/pep.sc | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index ef96de5..c905d86 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2010-09-15 Kai Tietz <kai.tietz@onevision.com> + + * scripttempl/pep.sc: Add .xdata segment and + put into .pdata all segments beginning with .pdata. + 2010-09-10 Alan Modra <amodra@gmail.com> PR ld/11931 diff --git a/ld/scripttempl/pep.sc b/ld/scripttempl/pep.sc index 7134a4e..75abc9f 100644 --- a/ld/scripttempl/pep.sc +++ b/ld/scripttempl/pep.sc @@ -118,7 +118,12 @@ SECTIONS .pdata ${RELOCATING+BLOCK(__section_alignment__)} : { - *(.pdata) + *(.pdata*) + } + + .xdata ${RELOCATING+BLOCK(__section_alignment__)} : + { + *(.xdata*) } .bss ${RELOCATING+BLOCK(__section_alignment__)} : |