* emulparams/armelf.sh (OTHER_BSS_END_SYMBOLS): Split out from
[deliverable/binutils-gdb.git] / ld / emulparams / armelf.sh
1 MACHINE=
2 SCRIPT_NAME=elf
3 OUTPUT_FORMAT="elf32-littlearm"
4 BIG_OUTPUT_FORMAT="elf32-bigarm"
5 LITTLE_OUTPUT_FORMAT="elf32-littlearm"
6 TEXT_START_ADDR=0x8000
7 TEMPLATE_NAME=elf32
8 EXTRA_EM_FILE=armelf
9 OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)'
10 OTHER_BSS_SYMBOLS='__bss_start__ = .;'
11 OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
12 OTHER_END_SYMBOLS='__end__ = . ;'
13 OTHER_SECTIONS='.note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }'
14 OTHER_READONLY_SECTIONS="
15 .ARM.extab ${RELOCATING-0} : { *(.ARM.extab${RELOCATING+* .gnu.linkonce.armextab.*}) }
16 ${RELOCATING+ __exidx_start = .; }
17 .ARM.exidx ${RELOCATING-0} : { *(.ARM.exidx${RELOCATING+* .gnu.linkonce.armexidx.*}) }
18 ${RELOCATING+ __exidx_end = .; }"
19
20 DATA_START_SYMBOLS='__data_start = . ;';
21
22 GENERATE_SHLIB_SCRIPT=yes
23
24 ARCH=arm
25 MACHINE=
26 MAXPAGESIZE=256
27 ENTRY=_start
28 EMBEDDED=yes
29
30 # This sets the stack to the top of the simulator memory (2^19 bytes).
31 STACK_ADDR=0x80000
32
33 # ARM does not support .s* sections.
34 NO_SMALL_DATA=yes
This page took 0.02934 seconds and 4 git commands to generate.