mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-04 13:06:01 +00:00
38 lines
963 B
Bash
38 lines
963 B
Bash
# This is an ELF platform.
|
|
SCRIPT_NAME=elf
|
|
ARCH=riscv
|
|
NO_REL_RELOCS=yes
|
|
|
|
TEMPLATE_NAME=elf32
|
|
EXTRA_EM_FILE=riscvelf
|
|
|
|
ELFSIZE=32
|
|
|
|
if test `echo "$host" | sed -e s/64//` = `echo "$target" | sed -e s/64//`; then
|
|
case " $EMULATION_LIBPATH " in
|
|
*" ${EMULATION_NAME} "*)
|
|
NATIVE=yes
|
|
;;
|
|
esac
|
|
fi
|
|
|
|
# Enable shared library support for everything except an embedded elf target.
|
|
case "$target" in
|
|
riscv*-elf)
|
|
;;
|
|
*)
|
|
GENERATE_SHLIB_SCRIPT=yes
|
|
GENERATE_PIE_SCRIPT=yes
|
|
;;
|
|
esac
|
|
|
|
TEXT_START_ADDR=0x10000
|
|
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"
|
|
COMMONPAGESIZE="CONSTANT (COMMONPAGESIZE)"
|
|
|
|
SDATA_START_SYMBOLS="${CREATE_SHLIB-__global_pointer$ = . + 0x800;}
|
|
*(.srodata.cst16) *(.srodata.cst8) *(.srodata.cst4) *(.srodata.cst2) *(.srodata .srodata.*)"
|
|
|
|
INITIAL_READONLY_SECTIONS=".interp : { *(.interp) } ${CREATE_PIE-${INITIAL_READONLY_SECTIONS}}"
|
|
INITIAL_READONLY_SECTIONS="${RELOCATING+${CREATE_SHLIB-${INITIAL_READONLY_SECTIONS}}}"
|