Browse Source
ld * Makefile.am: Add FreeBSD aarch64 files. * Makefile.in: Regenerate. * configure.tgt: Add aarch64-*-freebsd* target triple. * emulparams/aarch64fbsd.sh: New file. * emulparams/aarch64fbsdb.sh: New file. bfd * config.bfd: Add aarch64-*-freebsd* target triple.gdb-7.10-branch
committed by
Nick Clifton
8 changed files with 80 additions and 0 deletions
@ -0,0 +1,37 @@ |
|||
ARCH=aarch64 |
|||
MACHINE= |
|||
NOP=0 |
|||
|
|||
SCRIPT_NAME=elf |
|||
ELFSIZE=64 |
|||
OUTPUT_FORMAT="elf64-littleaarch64" |
|||
BIG_OUTPUT_FORMAT="elf64-bigaarch64" |
|||
LITTLE_OUTPUT_FORMAT="elf64-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=24 |
|||
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)} }" |
|||
@ -0,0 +1,2 @@ |
|||
. ${srcdir}/emulparams/aarch64fbsd.sh |
|||
OUTPUT_FORMAT="elf64-bigaarch64" |
|||
Loading…
Reference in new issue