Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaolo Molaro <lupus@oddwiz.org>2005-08-04 22:39:37 +0400
committerPaolo Molaro <lupus@oddwiz.org>2005-08-04 22:39:37 +0400
commite5b16369c8e795afac8b4f801d73a3702cf7809c (patch)
tree798c5788f4ee3d4acfb9841a740acc8aeedc6680 /configure.in
parent66575ed73fb3adc676adc49045ac8c134eca8afd (diff)
Thu Aug 4 19:55:33 BST 2005 Paolo Molaro <lupus@ximian.com>
* configure.in: enable the ARM jit port. svn path=/trunk/mono/; revision=48013
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index d4e146239b8..5b7a13802df 100644
--- a/configure.in
+++ b/configure.in
@@ -1470,12 +1470,12 @@ case "$host" in
JIT_SUPPORTED=yes
jit_wanted=true
;;
- arm-*-linux-* | armv4l-*-linux-*)
+ arm-*-linux-* | armv*l-*-linux-*)
TARGET=ARM;
arch_target=arm;
ACCESS_UNALIGNED="no"
- INTERP_SUPPORTED=yes
- interp_wanted=true
+ JIT_SUPPORTED=yes
+ jit_wanted=true
;;
s390-*-linux*)
TARGET=S390;
@@ -1522,7 +1522,7 @@ if test x$JIT_SUPPORTED = xyes; then
fi
fi
else
- if $interp_wanted; then
+ if test x$interp_wanted = xtrue; then
jit_status="interpreter"
else
AC_ERROR(No JIT or interpreter support available or selected.)