diff options
author | Alan Modra <amodra@gmail.com> | 2023-03-16 17:10:07 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2023-03-16 17:30:28 +1030 |
commit | 6752dd75f76457902729a5f03d09fa28ec5d68c3 (patch) | |
tree | ce27cbdcc9d0cabe75983869af5822018d30fd7d /ld/scripttempl/elfm9s12z.sc | |
parent | 3e8b13bf7745cde3a0bb027041df7cad4b29b510 (diff) | |
download | gdb-6752dd75f76457902729a5f03d09fa28ec5d68c3.zip gdb-6752dd75f76457902729a5f03d09fa28ec5d68c3.tar.gz gdb-6752dd75f76457902729a5f03d09fa28ec5d68c3.tar.bz2 |
Re: Add --enable-linker-verssion
Output sections without any input sections to initialise their flags
have their flags initialised by data statements to LOAD, ALLOC,
HAS_CONTENTS by default. This is wrong for .comment. Fix that by
making the script initialise the section type to INFO, one of the
noalloc section types. That also allows the address of .comment to be
set to zero, as is usual for non-alloc sections.
Also, use source_sh for all of the sourced scripts to set up make
dependencies.
PR 30187
* scripttempl/misc-sections.sc: Set .comment address to zero
and type to INFO.
* scripttempl/ft32.sc: Fix breakages from last edit.
* scripttempl/arclinux.sc: Use source_sh to source DWARF.sc
and misc-sections.sc.
* scripttempl/avr.sc: Likewise.
* scripttempl/dlx.sc: Likewise.
* scripttempl/elf.sc: Likewise.
* scripttempl/elf32cr16.sc: Likewise.
* scripttempl/elf32crx.sc: Likewise.
* scripttempl/elf32msp430.sc: Likewise.
* scripttempl/elf64bpf.sc: Likewise.
* scripttempl/elf64hppa.sc: Likewise.
* scripttempl/elf_chaos.sc: Likewise.
* scripttempl/elfarc.sc: Likewise.
* scripttempl/elfarcv2.sc: Likewise.
* scripttempl/elfd10v.sc: Likewise.
* scripttempl/elfd30v.sc: Likewise.
* scripttempl/elfm68hc11.sc: Likewise.
* scripttempl/elfm68hc12.sc: Likewise.
* scripttempl/elfm9s12z.sc: Likewise.
* scripttempl/elfmicroblaze.sc: Likewise.
* scripttempl/elfxgate.sc: Likewise.
* scripttempl/elfxtensa.sc: Likewise.
* scripttempl/epiphany_4x4.sc: Likewise.
* scripttempl/i386beos.sc: Likewise.
* scripttempl/i386go32.sc: Likewise.
* scripttempl/ia64vms.sc: Likewise.
* scripttempl/ip2k.sc: Likewise.
* scripttempl/iq2000.sc: Likewise.
* scripttempl/mep.sc: Likewise.
* scripttempl/mmo.sc: Likewise.
* scripttempl/nds32elf.sc: Likewise.
* scripttempl/pru.sc: Likewise.
* scripttempl/v850.sc: Likewise.
* scripttempl/v850_rh850.sc: Likewise.
* scripttempl/visium.sc: Likewise.
* scripttempl/xstormy16.sc: Likewise.
* scripttempl/z80.sc: Likewise.
* testsuite/ld-scripts/ld-version-2.d: Don't skip ft32 or pru.
Diffstat (limited to 'ld/scripttempl/elfm9s12z.sc')
-rw-r--r-- | ld/scripttempl/elfm9s12z.sc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ld/scripttempl/elfm9s12z.sc b/ld/scripttempl/elfm9s12z.sc index d77e213..c09b3f7 100644 --- a/ld/scripttempl/elfm9s12z.sc +++ b/ld/scripttempl/elfm9s12z.sc @@ -422,7 +422,7 @@ SECTIONS ${RELOCATING+${VECTORS}} EOF -. $srcdir/scripttempl/misc-sections.sc +source_sh $srcdir/scripttempl/misc-sections.sc cat <<EOF /* Treatment of DWARF debug section must be at end of the linker @@ -431,7 +431,7 @@ cat <<EOF symbols are found. */ EOF -. $srcdir/scripttempl/DWARF.sc +source_sh $srcdir/scripttempl/DWARF.sc cat <<EOF } |