mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-09 04:21:49 +08:00
df6b92ed1b
Chris Hadley <Christopher.Hadley@cl.cam.ac.uk>
57 lines
1.3 KiB
Python
57 lines
1.3 KiB
Python
# Linker script for ARM COFF.
|
|
# Based on i386coff.sc by Ian Taylor <ian@cygnus.com>.
|
|
test -z "$ENTRY" && ENTRY=_start
|
|
if test -z "${DATA_ADDR}"; then
|
|
if test "$LD_FLAG" = "N" || test "$LD_FLAG" = "n"; then
|
|
DATA_ADDR=.
|
|
fi
|
|
fi
|
|
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
${LIB_SEARCH_DIRS}
|
|
|
|
ENTRY(${ENTRY})
|
|
|
|
SECTIONS
|
|
{
|
|
/* We start at 0x8000 because gdb assumes it (see FRAME_CHAIN).
|
|
This is an artifact of the ARM Demon monitor using the bottom 32k
|
|
as workspace (shared with the FP instruction emulator if
|
|
present): */
|
|
.text ${RELOCATING+ 0x8000} : {
|
|
*(.init)
|
|
*(.text)
|
|
${CONSTRUCTING+ ___CTOR_LIST__ = .; __CTOR_LIST__ = . ;
|
|
LONG (-1); *(.ctors); *(.ctor); LONG (0); }
|
|
${CONSTRUCTING+ ___DTOR_LIST__ = .; __DTOR_LIST__ = . ;
|
|
LONG (-1); *(.dtors); *(.dtor); LONG (0); }
|
|
*(.fini)
|
|
${RELOCATING+ etext = .};
|
|
}
|
|
.data ${RELOCATING+${DATA_ADDR-0x40000 + (. & 0xffc00fff)}} : {
|
|
__data_start__ = . ;
|
|
*(.data)
|
|
__data_end__ = . ;
|
|
${RELOCATING+ edata = .};
|
|
}
|
|
.bss ${RELOCATING+ SIZEOF(.data) + ADDR(.data)} :
|
|
{
|
|
__bss_start__ = . ;
|
|
*(.bss)
|
|
*(COMMON)
|
|
__bss_end__ = . ;
|
|
}
|
|
|
|
${RELOCATING+ __end__ = .};
|
|
|
|
.stab 0 ${RELOCATING+(NOLOAD)} :
|
|
{
|
|
[ .stab ]
|
|
}
|
|
.stabstr 0 ${RELOCATING+(NOLOAD)} :
|
|
{
|
|
[ .stabstr ]
|
|
}
|
|
}
|
|
EOF
|