guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] 03/04: Enable JIT on 32-bit x86


From: Andy Wingo
Subject: [Guile-commits] 03/04: Enable JIT on 32-bit x86
Date: Sun, 28 Apr 2019 07:57:00 -0400 (EDT)

wingo pushed a commit to branch lightening
in repository guile.

commit 61c6a0d3dd9930e8e060f844bf22f07f190329eb
Author: Andy Wingo <address@hidden>
Date:   Sun Apr 28 12:45:36 2019 +0200

    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 53ee4c3..6febd33 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) ;;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]