1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

build: Mark riscv64 as a supported JIT target.

* acinclude.m4: Add "riscv64".
This commit is contained in:
Ludovic Courtès 2023-01-31 16:20:47 +01:00
parent a88ebcc1e6
commit b5ed3828a2

View file

@ -1,6 +1,6 @@
dnl -*- Autoconf -*- dnl -*- Autoconf -*-
dnl Copyright (C) 1997,1999-2002,2004,2006-2011,2013,2018-2019,2022 dnl Copyright (C) 1997,1999-2002,2004,2006-2011,2013,2018-2019,2022-2023
dnl Free Software Foundation, Inc. dnl Free Software Foundation, Inc.
dnl dnl
dnl This file is part of GUILE dnl This file is part of GUILE
@ -539,6 +539,7 @@ AC_DEFUN([GUILE_ENABLE_JIT], [
i?86|x86_64|amd64) JIT_AVAILABLE=yes ;; i?86|x86_64|amd64) JIT_AVAILABLE=yes ;;
*arm*) JIT_AVAILABLE=yes ;; *arm*) JIT_AVAILABLE=yes ;;
aarch64) JIT_AVAILABLE=yes ;; aarch64) JIT_AVAILABLE=yes ;;
riscv64) JIT_AVAILABLE=yes ;;
*) ;; *) ;;
esac esac
AC_MSG_RESULT($JIT_AVAILABLE) AC_MSG_RESULT($JIT_AVAILABLE)