mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-27 04:52:05 +08:00
a2c5833233
The result of running etc/update-copyright.py --this-year, fixing all the files whose mode is changed by the script, plus a build with --enable-maintainer-mode --enable-cgen-maint=yes, then checking out */po/*.pot which we don't update frequently. The copy of cgen was with commit d1dd5fcc38ead reverted as that commit breaks building of bfp opcodes files.
99 lines
2.4 KiB
Scala
99 lines
2.4 KiB
Scala
# Linker script for i386 go32 (DJGPP)
|
|
#
|
|
# Copyright (C) 2014-2022 Free Software Foundation, Inc.
|
|
#
|
|
# Copying and distribution of this file, with or without modification,
|
|
# are permitted in any medium without royalty provided the copyright
|
|
# notice and this notice are preserved.
|
|
|
|
test -z "$ENTRY" && ENTRY=start
|
|
EXE=${CONSTRUCTING+${RELOCATING+-exe}}
|
|
|
|
# These are substituted in as variables in order to get '}' in a shell
|
|
# conditional expansion.
|
|
CTOR='.ctor : {
|
|
*(SORT(.ctors.*))
|
|
*(.ctor)
|
|
}'
|
|
DTOR='.dtor : {
|
|
*(SORT(.dtors.*))
|
|
*(.dtor)
|
|
}'
|
|
|
|
cat <<EOF
|
|
/* Copyright (C) 2014-2022 Free Software Foundation, Inc.
|
|
|
|
Copying and distribution of this script, with or without modification,
|
|
are permitted in any medium without royalty provided the copyright
|
|
notice and this notice are preserved. */
|
|
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}${EXE}")
|
|
|
|
${RELOCATING+ENTRY (${ENTRY})}
|
|
|
|
SECTIONS
|
|
{
|
|
.text ${RELOCATING+ ${TARGET_PAGE_SIZE}+SIZEOF_HEADERS} : {
|
|
*(.text)
|
|
${RELOCATING+*(.text.*)}
|
|
${RELOCATING+*(.gnu.linkonce.t*)}
|
|
*(.const*)
|
|
*(.ro*)
|
|
${RELOCATING+*(.gnu.linkonce.r*)}
|
|
${RELOCATING+etext = . ; PROVIDE(_etext = .) ;}
|
|
${RELOCATING+. = ALIGN(${SEGMENT_SIZE});}
|
|
}
|
|
|
|
.data ${RELOCATING+ ${DATA_ALIGNMENT}} : {
|
|
${RELOCATING+djgpp_first_ctor = . ;
|
|
*(SORT(.ctors.*))
|
|
*(.ctor)
|
|
*(.ctors)
|
|
djgpp_last_ctor = . ;}
|
|
${RELOCATING+djgpp_first_dtor = . ;
|
|
*(SORT(.dtors.*))
|
|
*(.dtor)
|
|
*(.dtors)
|
|
djgpp_last_dtor = . ;}
|
|
__environ = . ;
|
|
PROVIDE(_environ = .) ;
|
|
LONG(0) ;
|
|
*(.data)
|
|
${RELOCATING+*(.data.*)}
|
|
|
|
${RELOCATING+*(.gcc_exc*)}
|
|
${RELOCATING+___EH_FRAME_BEGIN__ = . ;}
|
|
${RELOCATING+*(.eh_fram*)}
|
|
${RELOCATING+___EH_FRAME_END__ = . ;}
|
|
${RELOCATING+LONG(0);}
|
|
|
|
${RELOCATING+*(.gnu.linkonce.d*)}
|
|
${RELOCATING+edata = . ; PROVIDE(_edata = .) ;}
|
|
${RELOCATING+. = ALIGN(${SEGMENT_SIZE});}
|
|
}
|
|
|
|
${CONSTRUCTING+${RELOCATING-$CTOR}}
|
|
${CONSTRUCTING+${RELOCATING-$DTOR}}
|
|
|
|
.bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
|
|
{
|
|
*(.bss${RELOCATING+ .bss.* .gnu.linkonce.b.*})
|
|
*(COMMON)
|
|
${RELOCATING+ end = . ; PROVIDE(_end = .) ;}
|
|
${RELOCATING+ . = ALIGN(${SEGMENT_SIZE});}
|
|
}
|
|
|
|
/* Discard LTO sections. */
|
|
/DISCARD/ : { *(.gnu.lto_*) }
|
|
|
|
/* Stabs debugging sections. */
|
|
.stab 0 : { *(.stab) }
|
|
.stabstr 0 : { *(.stabstr) }
|
|
EOF
|
|
|
|
. $srcdir/scripttempl/DWARF.sc
|
|
|
|
cat <<EOF
|
|
}
|
|
EOF
|