This is an automated email from the git hooks/post-receive script. civodul pushed a commit to branch main in repository guile.
The following commit(s) were added to refs/heads/main by this push: new 402e0dfa3 build: Mark JIT as supported on riscv64. 402e0dfa3 is described below commit 402e0dfa33f442ad238a0f82a332efa438538840 Author: Zheng Junjie <z572@z572.online> AuthorDate: Mon Mar 3 20:48:23 2025 +0800 build: Mark JIT as supported on riscv64. This is a followup to 5d3f561d7dbcee370dc764cd5ba4210c62ce13de. * acinclude.m4 (GUILE_ENABLE_JIT): Mark riscv64 as JIT available. Signed-off-by: Ludovic Courtès <l...@gnu.org> --- acinclude.m4 | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index da1b971df..136431962 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -536,10 +536,10 @@ AC_DEFUN([GUILE_ENABLE_JIT], [ JIT_AVAILABLE=no AC_MSG_CHECKING([if JIT code generation supported for target CPU]) case "$target_cpu" in - i?86|x86_64|amd64) JIT_AVAILABLE=yes ;; - *arm*) JIT_AVAILABLE=yes ;; - aarch64) JIT_AVAILABLE=yes ;; - *) ;; + i?86|x86_64|amd64|riscv64) JIT_AVAILABLE=yes ;; + *arm*) JIT_AVAILABLE=yes ;; + aarch64) JIT_AVAILABLE=yes ;; + *) ;; esac AC_MSG_RESULT($JIT_AVAILABLE)