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

build: Mark JIT as supported on riscv64.

This is a followup to 5d3f561d7d.

* acinclude.m4 (GUILE_ENABLE_JIT): Mark riscv64 as JIT available.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
Zheng Junjie 2025-03-03 20:48:23 +08:00 committed by Ludovic Courtès
parent 5012581745
commit 402e0dfa33
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -536,10 +536,10 @@ AC_DEFUN([GUILE_ENABLE_JIT], [
JIT_AVAILABLE=no JIT_AVAILABLE=no
AC_MSG_CHECKING([if JIT code generation supported for target CPU]) AC_MSG_CHECKING([if JIT code generation supported for target CPU])
case "$target_cpu" in case "$target_cpu" in
i?86|x86_64|amd64) JIT_AVAILABLE=yes ;; i?86|x86_64|amd64|riscv64) JIT_AVAILABLE=yes ;;
*arm*) JIT_AVAILABLE=yes ;; *arm*) JIT_AVAILABLE=yes ;;
aarch64) JIT_AVAILABLE=yes ;; aarch64) JIT_AVAILABLE=yes ;;
*) ;; *) ;;
esac esac
AC_MSG_RESULT($JIT_AVAILABLE) AC_MSG_RESULT($JIT_AVAILABLE)