diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-08-01 01:03:47 +0000 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-08-01 01:03:47 +0000 |
commit | b2e4da5a836b3d5246dc2fa183e18c1f63232490 (patch) | |
tree | 7494febf76283b2d95c98e8c8d182da3b95df21e /ld/scripttempl/elfxtensa.sc | |
parent | 488916061e57e6b83b8229475789a78b8f7b5fb1 (diff) | |
download | gdb-b2e4da5a836b3d5246dc2fa183e18c1f63232490.zip gdb-b2e4da5a836b3d5246dc2fa183e18c1f63232490.tar.gz gdb-b2e4da5a836b3d5246dc2fa183e18c1f63232490.tar.bz2 |
Don't call compare_section in case of by_none
PR ld/14156
* ldlang.c (wild_sort): Don't call compare_section in case of
by_none.
* scripttempl/elf.sc: Add SORT_NONE to .init and .fini sections.
* scripttempl/elf32msp430.sc: Likewise.
* scripttempl/elf32msp430_3.sc: Likewise.
* scripttempl/elfd10v.sc: Likewise.
* scripttempl/elfd30v.sc: Likewise.
* scripttempl/elfxtensa.sc: Likewise.
Diffstat (limited to 'ld/scripttempl/elfxtensa.sc')
-rw-r--r-- | ld/scripttempl/elfxtensa.sc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/scripttempl/elfxtensa.sc b/ld/scripttempl/elfxtensa.sc index d330230..5e03797 100644 --- a/ld/scripttempl/elfxtensa.sc +++ b/ld/scripttempl/elfxtensa.sc @@ -402,7 +402,7 @@ cat <<EOF ${RELOCATING+${INIT_START}} ${RELOCATING+KEEP (*(.init.literal))} - ${RELOCATING+KEEP (*(.init))} + ${RELOCATING+KEEP (*(SORT_NONE(.init)))} ${RELOCATING+${INIT_END}} ${RELOCATING+${TEXT_START_SYMBOLS}} @@ -413,7 +413,7 @@ cat <<EOF ${RELOCATING+${FINI_START}} ${RELOCATING+KEEP (*(.fini.literal))} - ${RELOCATING+KEEP (*(.fini))} + ${RELOCATING+KEEP (*(SORT_NONE(.fini)))} ${RELOCATING+${FINI_END}} } =${NOP-0} |