mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-07 14:34:51 +01:00
0aa3a3d9db
except one: the binaries produced by this version of binutils crashes the loader of BeOS versions BONE, Dano (and probably Zeta, too). That's a pity, but I currently do not know how to fix this (as the fix available for older versions of binutils does not work anymore). git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@20192 a95241bf-73f2-0310-859d-f6bbb57e9c96
36 lines
1.0 KiB
Bash
36 lines
1.0 KiB
Bash
MACHINE=
|
|
SCRIPT_NAME=elf
|
|
OUTPUT_FORMAT="elf32-littlearm"
|
|
BIG_OUTPUT_FORMAT="elf32-bigarm"
|
|
LITTLE_OUTPUT_FORMAT="elf32-littlearm"
|
|
TEXT_START_ADDR=0x8000
|
|
TEMPLATE_NAME=elf32
|
|
EXTRA_EM_FILE=armelf
|
|
OTHER_TEXT_SECTIONS='*(.glue_7t) *(.glue_7)'
|
|
OTHER_BSS_SYMBOLS='__bss_start__ = .;'
|
|
OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ;'
|
|
OTHER_END_SYMBOLS='__end__ = . ;'
|
|
OTHER_SECTIONS='.note.gnu.arm.ident 0 : { KEEP (*(.note.gnu.arm.ident)) }
|
|
.ARM.attributes 0 : { KEEP (*(.ARM.attributes)) }'
|
|
OTHER_READONLY_SECTIONS="
|
|
.ARM.extab ${RELOCATING-0} : { *(.ARM.extab${RELOCATING+* .gnu.linkonce.armextab.*}) }
|
|
${RELOCATING+ __exidx_start = .; }
|
|
.ARM.exidx ${RELOCATING-0} : { *(.ARM.exidx${RELOCATING+* .gnu.linkonce.armexidx.*}) }
|
|
${RELOCATING+ __exidx_end = .; }"
|
|
|
|
DATA_START_SYMBOLS='__data_start = . ;';
|
|
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
|
|
ARCH=arm
|
|
MACHINE=
|
|
MAXPAGESIZE=256
|
|
ENTRY=_start
|
|
EMBEDDED=yes
|
|
|
|
# This sets the stack to the top of the simulator memory (2^19 bytes).
|
|
STACK_ADDR=0x80000
|
|
|
|
# ARM does not support .s* sections.
|
|
NO_SMALL_DATA=yes
|