mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +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
25 lines
660 B
Bash
25 lines
660 B
Bash
ARCH=arm
|
|
SCRIPT_NAME=elf
|
|
OUTPUT_FORMAT="elf32-littlearm"
|
|
BIG_OUTPUT_FORMAT="elf32-bigarm"
|
|
LITTLE_OUTPUT_FORMAT="elf32-littlearm"
|
|
MAXPAGESIZE=0x8000
|
|
COMMONPAGESIZE=0x1000
|
|
TEMPLATE_NAME=elf32
|
|
EXTRA_EM_FILE=armelf
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
GENERATE_PIE_SCRIPT=yes
|
|
|
|
DATA_START_SYMBOLS='__data_start = . ;';
|
|
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)) }'
|
|
|
|
TEXT_START_ADDR=0x00008000
|
|
TARGET2_TYPE=got-rel
|
|
|
|
# ARM does not support .s* sections.
|
|
NO_SMALL_DATA=yes
|