diff options
author | Georg-Johann Lay <gjl@gcc.gnu.org> | 2017-07-27 14:17:14 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2017-07-27 14:17:14 +0100 |
commit | f726cc1cb69ab0e0303209d08effb10b99007080 (patch) | |
tree | 7ca1b82dbcfe65e749647a47af097199f6869854 /ld | |
parent | 8bdf0be19d2777565a8b1c88347f65d6a4b8c5fc (diff) | |
download | binutils-gdb-f726cc1cb69ab0e0303209d08effb10b99007080.tar.gz |
Move AVR .promemx.* sections into higher memory.
PR ld/21849
* scripttempl/avr.sc: Split .progmemx.* from .progmem.* and locate
former at a higher address.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 6 | ||||
-rw-r--r-- | ld/scripttempl/avr.sc | 4 |
2 files changed, 9 insertions, 1 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index c44bc33d6dd..fad1b7c165c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,9 @@ +2017-07-27 Georg-Johann Lay <gjl@gcc.gnu.org> + + PR ld/21849 + * scripttempl/avr.sc: Split .progmemx.* from .progmem.* and locate + former at a higher address. + 2017-07-25 Alan Modra <amodra@gmail.com> * testsuite/ld-powerpc/tlsopt5.s: Add cfi. diff --git a/ld/scripttempl/avr.sc b/ld/scripttempl/avr.sc index 07553b4b061..7a146b7777e 100644 --- a/ld/scripttempl/avr.sc +++ b/ld/scripttempl/avr.sc @@ -128,7 +128,7 @@ SECTIONS ${RELOCATING+ *libprintf_flt.a:*(.progmem.data)} ${RELOCATING+ *libc.a:*(.progmem.data)} - ${RELOCATING+ *(.progmem*)} + ${RELOCATING+ *(.progmem.*)} ${RELOCATING+. = ALIGN(2);} @@ -196,6 +196,8 @@ SECTIONS *(.hightext) ${RELOCATING+ *(.hightext*)} + ${RELOCATING+ *(.progmemx.*)} + ${RELOCATING+. = ALIGN(2);} /* For tablejump instruction arrays. We don't relax |