elf64lriscv_lp64f.sh 386 B

1234567891011121314
  1. # RV64 code using LP64F ABI.
  2. source_sh ${srcdir}/emulparams/elf64lriscv-defs.sh
  3. OUTPUT_FORMAT="elf64-littleriscv"
  4. # On Linux, first look for 64 bit LP64F target libraries in /lib64/lp64f as per
  5. # the glibc ABI, and then /lib64 for backward compatility.
  6. case "$target" in
  7. riscv64*-linux*)
  8. case "$EMULATION_NAME" in
  9. *64*)
  10. LIBPATH_SUFFIX="64/lp64f 64";;
  11. esac
  12. ;;
  13. esac