diff options
author | Richard Henderson <rth@redhat.com> | 2001-02-10 01:44:39 +0000 |
---|---|---|
committer | Richard Henderson <rth@redhat.com> | 2001-02-10 01:44:39 +0000 |
commit | f3988fd90157e983d40e11a8dd21c6f52c3eec36 (patch) | |
tree | fbcd808116db1c5ffe1ecd356626a95e89b56f61 /ld | |
parent | 91a2ae2a30a7935807a7d138de8cfa9e4613e797 (diff) | |
download | fsf-binutils-gdb-f3988fd90157e983d40e11a8dd21c6f52c3eec36.zip fsf-binutils-gdb-f3988fd90157e983d40e11a8dd21c6f52c3eec36.tar.gz fsf-binutils-gdb-f3988fd90157e983d40e11a8dd21c6f52c3eec36.tar.bz2 |
* emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add
.IA_64.unwind.* pattern to unwind table section and
.IA_64.unwind_info* pattern to unwind info section.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/emulparams/elf64_ia64.sh | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 5bc32ff..9b95eb5 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2001-02-09 David Mosberger <davidm@hpl.hp.com> + + * emulparams/elf64_ia64.sh (OTHER_READONLY_SECTIONS): Add + .IA_64.unwind.* pattern to unwind table section and + .IA_64.unwind_info* pattern to unwind info section. + 2001-02-09 Martin Schwidefsky <schwidefsky@de.ibm.com> * Makefile.am: Add linux target for S/390. diff --git a/ld/emulparams/elf64_ia64.sh b/ld/emulparams/elf64_ia64.sh index 65f305d..263a732 100644 --- a/ld/emulparams/elf64_ia64.sh +++ b/ld/emulparams/elf64_ia64.sh @@ -13,4 +13,4 @@ NOP=0x00300000010070000002000001000400 # a bundle full of nops OTHER_GOT_SYMBOLS='. = ALIGN (8); PROVIDE (__gp = . + 0x200000);' OTHER_GOT_SECTIONS='.IA_64.pltoff : { *(.IA_64.pltoff) }' OTHER_PLT_RELOC_SECTIONS='.rela.IA_64.pltoff : { *(.rela.IA_64.pltoff) }' -OTHER_READONLY_SECTIONS='.opd : { *(.opd) } .IA_64.unwind : { *(.IA_64.unwind) } .IA_64.unwind.info : { *(.IA_64.unwind.info) }' +OTHER_READONLY_SECTIONS='.opd : { *(.opd) } .IA_64.unwind_info : { *(.IA_64.unwind_info*) } .IA_64.unwind : { *(.IA_64.unwind*) }' |