diff options
author | Richard Sandiford <rdsandiford@googlemail.com> | 2007-12-15 09:43:40 +0000 |
---|---|---|
committer | Richard Sandiford <rdsandiford@googlemail.com> | 2007-12-15 09:43:40 +0000 |
commit | 53ccb772509c2c46d61f85a425e9da1449b18d2b (patch) | |
tree | 49af51e749073d321403dd299ede687cc5a6b0a6 /ld | |
parent | fc802241f3609e0bda5f9bc0922880b8c092a114 (diff) | |
download | fsf-binutils-gdb-53ccb772509c2c46d61f85a425e9da1449b18d2b.zip fsf-binutils-gdb-53ccb772509c2c46d61f85a425e9da1449b18d2b.tar.gz fsf-binutils-gdb-53ccb772509c2c46d61f85a425e9da1449b18d2b.tar.bz2 |
ld/
* scripttempl/armbpabi.sc (.text): Don't KEEP (*(.text.*personality*)).
(.data): Don't KEEP (*(.gnu.linkonce.d.*personality*)).
* scripttempl/elf.sc: As for armbpabi.sc.
* scripttempl/elfxtensa.sc: Likewise.
* scripttempl/mep.sc: Likewise.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 8 | ||||
-rw-r--r-- | ld/scripttempl/armbpabi.sc | 2 | ||||
-rw-r--r-- | ld/scripttempl/elf.sc | 2 | ||||
-rw-r--r-- | ld/scripttempl/elfxtensa.sc | 2 | ||||
-rw-r--r-- | ld/scripttempl/mep.sc | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index eaf3d9d..f409af8 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,11 @@ +2007-12-15 Richard Sandiford <rsandifo@nildram.co.uk> + + * scripttempl/armbpabi.sc (.text): Don't KEEP (*(.text.*personality*)). + (.data): Don't KEEP (*(.gnu.linkonce.d.*personality*)). + * scripttempl/elf.sc: As for armbpabi.sc. + * scripttempl/elfxtensa.sc: Likewise. + * scripttempl/mep.sc: Likewise. + 2007-11-07 Nathan Sidwell <nathan@codesourcery.com> * emulparams/vxworks.sh (OTHER_READONLY_SECTIONS, diff --git a/ld/scripttempl/armbpabi.sc b/ld/scripttempl/armbpabi.sc index 83ca358..38a8564 100644 --- a/ld/scripttempl/armbpabi.sc +++ b/ld/scripttempl/armbpabi.sc @@ -183,7 +183,6 @@ cat <<EOF { ${RELOCATING+${TEXT_START_SYMBOLS}} *(.text .stub${RELOCATING+ .text.* .gnu.linkonce.t.*}) - KEEP (*(.text.*personality*)) /* .gnu.warning sections are handled specially by elf32.em. */ *(.gnu.warning) ${RELOCATING+${OTHER_TEXT_SECTIONS}} @@ -271,7 +270,6 @@ cat <<EOF { ${RELOCATING+${DATA_START_SYMBOLS}} *(.data${RELOCATING+ .data.* .gnu.linkonce.d.*}) - KEEP (*(.gnu.linkonce.d.*personality*)) ${CONSTRUCTING+SORT(CONSTRUCTORS)} } .data1 ${RELOCATING-0} : { *(.data1) } diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index a59a884..2f86d91 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -350,7 +350,6 @@ cat <<EOF { ${RELOCATING+${TEXT_START_SYMBOLS}} *(.text .stub${RELOCATING+ .text.* .gnu.linkonce.t.*}) - KEEP (*(.text.*personality*)) /* .gnu.warning sections are handled specially by elf32.em. */ *(.gnu.warning) ${RELOCATING+${OTHER_TEXT_SECTIONS}} @@ -427,7 +426,6 @@ cat <<EOF { ${RELOCATING+${DATA_START_SYMBOLS}} *(.data${RELOCATING+ .data.* .gnu.linkonce.d.*}) - ${RELOCATING+KEEP (*(.gnu.linkonce.d.*personality*))} ${CONSTRUCTING+SORT(CONSTRUCTORS)} } .data1 ${RELOCATING-0} : { *(.data1) } diff --git a/ld/scripttempl/elfxtensa.sc b/ld/scripttempl/elfxtensa.sc index 1bbd7e4..60115b8 100644 --- a/ld/scripttempl/elfxtensa.sc +++ b/ld/scripttempl/elfxtensa.sc @@ -366,7 +366,6 @@ cat <<EOF ${RELOCATING+${TEXT_START_SYMBOLS}} *(.literal .text .stub${RELOCATING+ .literal.* .text.* .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*}) - KEEP (*(.text.*personality*)) /* .gnu.warning sections are handled specially by elf32.em. */ *(.gnu.warning) ${RELOCATING+${OTHER_TEXT_SECTIONS}} @@ -446,7 +445,6 @@ cat <<EOF { ${RELOCATING+${DATA_START_SYMBOLS}} *(.data${RELOCATING+ .data.* .gnu.linkonce.d.*}) - ${RELOCATING+KEEP (*(.gnu.linkonce.d.*personality*))} ${CONSTRUCTING+SORT(CONSTRUCTORS)} } .data1 ${RELOCATING-0} : { *(.data1) } diff --git a/ld/scripttempl/mep.sc b/ld/scripttempl/mep.sc index 20a6938..9062d58 100644 --- a/ld/scripttempl/mep.sc +++ b/ld/scripttempl/mep.sc @@ -300,7 +300,6 @@ cat <<EOF { ${RELOCATING+${TEXT_START_SYMBOLS}} *(.text .stub${RELOCATING+ .text.* .gnu.linkonce.t.*}) - KEEP (*(.text.*personality*)) /* .gnu.warning sections are handled specially by elf32.em. */ *(.gnu.warning) ${RELOCATING+${OTHER_TEXT_SECTIONS}} @@ -360,7 +359,6 @@ cat <<EOF { ${RELOCATING+${DATA_START_SYMBOLS}} *(.data${RELOCATING+ .data.* .gnu.linkonce.d.*}) - KEEP (*(.gnu.linkonce.d.*personality*)) ${CONSTRUCTING+SORT(CONSTRUCTORS)} } .data1 ${RELOCATING-0} : { *(.data1) } |