mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-21 04:42:53 +08:00
56244278a6
* Makefile.am (ALL_64_EMULATION_SOURCES): Add eaarch64linux32.c and eaarch64linux32b.c (eaarch64linux32.c): New target. (eaarch64linux32b.c): Likewise. * Makefile.in: Regenerate. * configure.tgt (aarch64_be-*-linux*): Add aarch64linux32 and aarch64linux32b to targ_extra_libpath. (aarch64-*-linux*): Likewise. * emulparams/aarch64elf32.sh (SEPARATE_GOTPLT): Change to 12 (3 words). * emulparams/aarch64linux32.sh: New file. * emulparams/aarch64linux32b.sh: New file.
48 lines
1.2 KiB
Bash
48 lines
1.2 KiB
Bash
ARCH="aarch64:ilp32"
|
|
MACHINE=
|
|
NOP=0
|
|
|
|
SCRIPT_NAME=elf
|
|
ELFSIZE=32
|
|
OUTPUT_FORMAT="elf32-littleaarch64"
|
|
BIG_OUTPUT_FORMAT="elf32-bigaarch64"
|
|
LITTLE_OUTPUT_FORMAT="elf32-littleaarch64"
|
|
NO_REL_RELOCS=yes
|
|
|
|
TEMPLATE_NAME=elf32
|
|
EXTRA_EM_FILE=aarch64elf
|
|
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
GENERATE_PIE_SCRIPT=yes
|
|
|
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
|
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
|
|
SEPARATE_GOTPLT=12
|
|
IREL_IN_PLT=
|
|
|
|
TEXT_START_ADDR=0x400000
|
|
|
|
DATA_START_SYMBOLS='PROVIDE (__data_start = .);';
|
|
|
|
# AArch64 does not support .s* sections.
|
|
NO_SMALL_DATA=yes
|
|
|
|
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)) }'
|
|
ATTRS_SECTIONS='.ARM.attributes 0 : { KEEP (*(.ARM.attributes)) KEEP (*(.gnu.attributes)) }'
|
|
# Ensure each PLT entry is aligned to a cache line.
|
|
PLT=".plt ${RELOCATING-0} : ALIGN(16) { *(.plt)${IREL_IN_PLT+ *(.iplt)} }"
|
|
|
|
# Linux modifies the default library search path to first include
|
|
# a 32-bit specific directory.
|
|
case "$target" in
|
|
aarch64*-linux*)
|
|
case "$EMULATION_NAME" in
|
|
aarch64linux*) LIBPATH_SUFFIX=32 ;;
|
|
esac
|
|
;;
|
|
esac
|