0001-Recongnise-riscv64-target-arch.patch 943 B

1234567891011121314151617181920212223242526
  1. From 03ce1cff5630139c6f07de149e95cfa0d826ce76 Mon Sep 17 00:00:00 2001
  2. From: Khem Raj <raj.khem@gmail.com>
  3. Date: Fri, 15 Mar 2019 18:26:40 -0700
  4. Subject: [PATCH] Recongnise riscv64 target arch
  5. Signed-off-by: Khem Raj <raj.khem@gmail.com>
  6. ---
  7. configure.ac | 2 +-
  8. 1 file changed, 1 insertion(+), 1 deletion(-)
  9. diff --git a/configure.ac b/configure.ac
  10. index 31d2817..e603730 100644
  11. --- a/configure.ac
  12. +++ b/configure.ac
  13. @@ -183,7 +183,7 @@ AM_CONDITIONAL(OS_QNX, expr x$target_os : xnto-qnx >/dev/null)
  14. AC_MSG_CHECKING([for ELF helper width])
  15. case "${target_arch}" in
  16. (arm|hppa|ppc32|x86|sh) use_elf32=yes; AC_MSG_RESULT([32]);;
  17. -(aarch64|ia64|ppc64|x86_64|tilegx) use_elf64=yes; AC_MSG_RESULT([64]);;
  18. +(aarch64|ia64|ppc64|x86_64|tilegx|riscv64) use_elf64=yes; AC_MSG_RESULT([64]);;
  19. (mips) use_elfxx=yes; AC_MSG_RESULT([xx]);;
  20. *) AC_MSG_ERROR([Unknown ELF target: ${target_arch}])
  21. esac
  22. --
  23. 2.21.0