diff options
author | Alan Modra <amodra@gmail.com> | 2017-02-20 13:25:13 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2017-02-20 19:33:28 +1030 |
commit | 74dc9032e79b7950095ee5f94f5517209ef4747e (patch) | |
tree | 4cd2fe2d3c2216cb646a0c02d591f7461d62efd4 /ld/ChangeLog | |
parent | ece5dcc1c00a48ecf63eae71983d04270cef4280 (diff) | |
download | gdb-74dc9032e79b7950095ee5f94f5517209ef4747e.zip gdb-74dc9032e79b7950095ee5f94f5517209ef4747e.tar.gz gdb-74dc9032e79b7950095ee5f94f5517209ef4747e.tar.bz2 |
Move .stack before debug sections
PR 20199
* emulparams/elf32m32c.sh: Define STACK_ADDR and STACK_SENTINEL
rather than using OTHER_SECTIONS.
* emulparams/elf32mt.sh: Likewise.
* emulparams/elf32rx.sh: Likewise.
* emulparams/elf32rl78.sh: Likewise. Use OTHER_SYMBOLS to
define __rl78_abs__.
* emulparams/shelf.sh: Define STACK_ADDR and STACK_SENTINEL
rather than using OTHER_SECTIONS.
* emulparams/shelf32.sh: Likewise. Use OTHER_SECTIONS for .cranges.
* emulparams/shelf64.sh: Unset OTHER_SECTIONS.
* emulparams/shelf_nbsd.sh: Unset STACK_ADDR not OTHER_SECTIONS.
* emulparams/shelf_uclinux.sh: Likewise.
* emulparams/shlsymbian.sh: Unset STACK_ADDR. Use OTHER_SYMBOLS
to define _stack, not OTHER_SECTIONS.
* scripttempl/elf.sc: Move STACK, TINY_DATA_SECTION, and
TINY_BSS_SECTION before debug sections. Add STACK_SENTINEL.
* scripttempl/arclinux.sc: Likewise.
* scripttempl/elf64hppa.sc: Likewise.
* scripttempl/elfxtensa.sc: Likewise.
* scripttempl/nds32elf.sc: Likewise.
* scripttempl/armbpabi.sc: Move STACK before debug sections.
* scripttempl/elf_chaos.sc: Likewise.
* scripttempl/elfarc.sc: Delete STACK.
* scripttempl/epiphany_4x4.sc: Delete STACK. Move TINY_DATA_SECTION,
TINY_BSS_SECTION, and .stack before debug sections.
Diffstat (limited to 'ld/ChangeLog')
-rw-r--r-- | ld/ChangeLog | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index ce8cdb3..d02d009 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,32 @@ +2017-02-17 Alan Modra <amodra@gmail.com> + + PR 20199 + * emulparams/elf32m32c.sh: Define STACK_ADDR and STACK_SENTINEL + rather than using OTHER_SECTIONS. + * emulparams/elf32mt.sh: Likewise. + * emulparams/elf32rx.sh: Likewise. + * emulparams/elf32rl78.sh: Likewise. Use OTHER_SYMBOLS to + define __rl78_abs__. + * emulparams/shelf.sh: Define STACK_ADDR and STACK_SENTINEL + rather than using OTHER_SECTIONS. + * emulparams/shelf32.sh: Likewise. Use OTHER_SECTIONS for .cranges. + * emulparams/shelf64.sh: Unset OTHER_SECTIONS. + * emulparams/shelf_nbsd.sh: Unset STACK_ADDR not OTHER_SECTIONS. + * emulparams/shelf_uclinux.sh: Likewise. + * emulparams/shlsymbian.sh: Unset STACK_ADDR. Use OTHER_SYMBOLS + to define _stack, not OTHER_SECTIONS. + * scripttempl/elf.sc: Move STACK, TINY_DATA_SECTION, and + TINY_BSS_SECTION before debug sections. Add STACK_SENTINEL. + * scripttempl/arclinux.sc: Likewise. + * scripttempl/elf64hppa.sc: Likewise. + * scripttempl/elfxtensa.sc: Likewise. + * scripttempl/nds32elf.sc: Likewise. + * scripttempl/armbpabi.sc: Move STACK before debug sections. + * scripttempl/elf_chaos.sc: Likewise. + * scripttempl/elfarc.sc: Delete STACK. + * scripttempl/epiphany_4x4.sc: Delete STACK. Move TINY_DATA_SECTION, + TINY_BSS_SECTION, and .stack before debug sections. + 2017-02-17 Nick Clifton <nickc@redhat.com> PR ld/20825 |