diff options
author | Joseph Myers <joseph@codesourcery.com> | 2011-12-20 17:55:24 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2011-12-20 17:55:24 +0000 |
commit | c0a512e26627ba94d3b6a0a02d8470c16f81f859 (patch) | |
tree | 5063c2e250271285190e8c1746bb6cb35633f8ca /ld | |
parent | 604fcd6577ea18c09a5fc3aefd3798f75f177ab3 (diff) | |
download | gdb-c0a512e26627ba94d3b6a0a02d8470c16f81f859.zip gdb-c0a512e26627ba94d3b6a0a02d8470c16f81f859.tar.gz gdb-c0a512e26627ba94d3b6a0a02d8470c16f81f859.tar.bz2 |
* emulparams/elf32bmip.sh (OTHER_SECTIONS): Put .mdebug.* and
.gcc_compiled_long* sections at address 0.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/emulparams/elf32bmip.sh | 16 |
2 files changed, 13 insertions, 8 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 1c2a2c4..f8c48e6 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2011-12-20 Joseph Myers <joseph@codesourcery.com> + + * emulparams/elf32bmip.sh (OTHER_SECTIONS): Put .mdebug.* and + .gcc_compiled_long* sections at address 0. + 2011-12-13 Nick Clifton <nickc@redhat.com> * po/it.po: New Italian translation. diff --git a/ld/emulparams/elf32bmip.sh b/ld/emulparams/elf32bmip.sh index 44a0b8a..f0fcd2c 100644 --- a/ld/emulparams/elf32bmip.sh +++ b/ld/emulparams/elf32bmip.sh @@ -64,14 +64,14 @@ OTHER_BSS_SYMBOLS='_fbss = .;' OTHER_SECTIONS=' .gptab.sdata : { *(.gptab.data) *(.gptab.sdata) } .gptab.sbss : { *(.gptab.bss) *(.gptab.sbss) } - .mdebug.abi32 : { KEEP(*(.mdebug.abi32)) } - .mdebug.abiN32 : { KEEP(*(.mdebug.abiN32)) } - .mdebug.abi64 : { KEEP(*(.mdebug.abi64)) } - .mdebug.abiO64 : { KEEP(*(.mdebug.abiO64)) } - .mdebug.eabi32 : { KEEP(*(.mdebug.eabi32)) } - .mdebug.eabi64 : { KEEP(*(.mdebug.eabi64)) } - .gcc_compiled_long32 : { KEEP(*(.gcc_compiled_long32)) } - .gcc_compiled_long64 : { KEEP(*(.gcc_compiled_long64)) } + .mdebug.abi32 0 : { KEEP(*(.mdebug.abi32)) } + .mdebug.abiN32 0 : { KEEP(*(.mdebug.abiN32)) } + .mdebug.abi64 0 : { KEEP(*(.mdebug.abi64)) } + .mdebug.abiO64 0 : { KEEP(*(.mdebug.abiO64)) } + .mdebug.eabi32 0 : { KEEP(*(.mdebug.eabi32)) } + .mdebug.eabi64 0 : { KEEP(*(.mdebug.eabi64)) } + .gcc_compiled_long32 0 : { KEEP(*(.gcc_compiled_long32)) } + .gcc_compiled_long64 0 : { KEEP(*(.gcc_compiled_long64)) } ' ARCH=mips MACHINE= |