mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 18:14:13 +08:00
6752dd75f7
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.
71 lines
1.4 KiB
Scala
71 lines
1.4 KiB
Scala
TORS=".tors :
|
|
{
|
|
___ctors = . ;
|
|
*(.ctors)
|
|
___ctors_end = . ;
|
|
___dtors = . ;
|
|
*(.dtors)
|
|
___dtors_end = . ;
|
|
. = ALIGN(4);
|
|
} ${RELOCATING+ > ram}"
|
|
|
|
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
OUTPUT_ARCH(${ARCH})
|
|
${LIB_SEARCH_DIRS}
|
|
EOF
|
|
|
|
test -n "${RELOCATING}" && cat <<EOF
|
|
/* Allow the command line to override the memory region sizes. */
|
|
__PMSIZE = DEFINED(__PMSIZE) ? __PMSIZE : 256K;
|
|
__RAMSIZE = DEFINED(__RAMSIZE) ? __RAMSIZE : 64K;
|
|
|
|
MEMORY
|
|
{
|
|
flash (rx) : ORIGIN = 0, LENGTH = __PMSIZE
|
|
ram (rw!x) : ORIGIN = 0x800000, LENGTH = __RAMSIZE
|
|
}
|
|
EOF
|
|
|
|
cat <<EOF
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text${RELOCATING+*})
|
|
${RELOCATING+*(.strings)
|
|
*(._pm*)
|
|
KEEP (*(SORT_NONE(.init)))
|
|
KEEP (*(SORT_NONE(.fini)))
|
|
_etext = .;
|
|
. = ALIGN(4);}
|
|
} ${RELOCATING+ > flash}
|
|
${CONSTRUCTING+${TORS}}
|
|
.data : ${RELOCATING+ AT (ADDR (.text) + SIZEOF (.text))}
|
|
{
|
|
*(.data)
|
|
${RELOCATING+*(.rodata)
|
|
*(.rodata*)
|
|
_edata = .;
|
|
. = ALIGN(4);}
|
|
} ${RELOCATING+ > ram}
|
|
.bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
|
|
{
|
|
${RELOCATING+ _bss_start = . ; }
|
|
*(.bss)
|
|
${RELOCATING+*(COMMON)
|
|
_end = .;
|
|
. = ALIGN(4);}
|
|
} ${RELOCATING+ > ram}
|
|
|
|
${RELOCATING+ __data_load_start = LOADADDR(.data); }
|
|
${RELOCATING+ __data_load_end = __data_load_start + SIZEOF(.data); }
|
|
EOF
|
|
|
|
source_sh $srcdir/scripttempl/misc-sections.sc
|
|
source_sh $srcdir/scripttempl/DWARF.sc
|
|
|
|
cat <<EOF
|
|
}
|
|
EOF
|