mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
dbfcd05365
2018-09-19 Kito Cheng <kito@andestech.com> ld/ * emulparams/elf32lriscv.sh: Correct the library search path. * emulparams/elf32lriscv_ilp32.sh: Likewise. * emulparams/elf32lriscv_ilp32f.sh: Likewise.
15 lines
335 B
Bash
15 lines
335 B
Bash
# RV32 code using ILP32 ABI.
|
|
. ${srcdir}/emulparams/elf32lriscv-defs.sh
|
|
OUTPUT_FORMAT="elf32-littleriscv"
|
|
|
|
# On Linux, first look for 32 bit ILP32 target libraries in /lib/ilp32 as per
|
|
# the glibc ABI.
|
|
case "$target" in
|
|
riscv32*-linux*)
|
|
case "$EMULATION_NAME" in
|
|
*32*)
|
|
LIBPATH_SUFFIX="32/ilp32 32" ;;
|
|
esac
|
|
;;
|
|
esac
|