mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-19 18:46:30 +00:00
15 lines
334 B
Bash
15 lines
334 B
Bash
# RV32 code using ILP32F ABI.
|
|
. ${srcdir}/emulparams/elf32lriscv-defs.sh
|
|
OUTPUT_FORMAT="elf32-littleriscv"
|
|
|
|
# On Linux, first look for 32 bit ILP32F target libraries in /lib/ilp32f as per
|
|
# the glibc ABI.
|
|
case "$target" in
|
|
riscv32*-linux*)
|
|
case "$EMULATION_NAME" in
|
|
*32*)
|
|
LIBPATH_SUFFIX="/ilp32f" ;;
|
|
esac
|
|
;;
|
|
esac
|