From 61c6a0d3dd9930e8e060f844bf22f07f190329eb Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Sun, 28 Apr 2019 12:45:36 +0200 Subject: [PATCH] Enable JIT on 32-bit x86 * acinclude.m4 (GUILE_ENABLE_JIT): Turn on JIT for 32-bit x86. --- acinclude.m4 | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 53ee4c3e1..6febd3345 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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) ;;