1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-10 14:00:21 +02:00

Enable JIT on 32-bit x86

* acinclude.m4 (GUILE_ENABLE_JIT): Turn on JIT for 32-bit x86.
This commit is contained in:
Andy Wingo 2019-04-28 12:45:36 +02:00
parent 334d0ba860
commit 61c6a0d3dd

View file

@ -1,6 +1,6 @@
dnl -*- Autoconf -*-
dnl Copyright (C) 1997,1999-2002,2004,2006-2011,2013,2018
dnl Copyright (C) 1997,1999-2002,2004,2006-2011,2013,2018-2019
dnl Free Software Foundation, Inc.
dnl
dnl This file is part of GUILE
@ -615,9 +615,10 @@ AC_DEFUN([GUILE_ENABLE_JIT], [
xy*) enable_jit=yes ;;
xn*) enable_jit=no ;;
xa* | x)
# For the time being, only enable JIT on x86-64.
# For the time being, only enable JIT on x86-64 and i686.
case "$target_cpu" in
x86_64|amd64) enable_jit=yes ;;
i?86) enable_jit=yes ;;
*) enable_jit=no ;;
esac ;;
*) AC_MSG_ERROR(bad value $enable_jit for --enable-jit) ;;