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>2003-05-20 23:20:16 +0400
committerPaolo Molaro <lupus@oddwiz.org>2003-05-20 23:20:16 +0400
commit8e147f4b57c9aa124714c29740216981cea59193 (patch)
treed891ca6431e8d98d03f852ee1821eb5d5fa3d2ef /configure.in
parente00a3a77880182e3ceb5bd688b4af01088364db7 (diff)
Define a symbol for arch that have the jit ported.
svn path=/trunk/mono/; revision=14730
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index a5be77bcef5..c1c92bf37a6 100644
--- a/configure.in
+++ b/configure.in
@@ -508,9 +508,11 @@ fi
TARGET="unknown"
ACCESS_UNALIGNED="yes"
+JIT_SUPPORTED=no
+
case "$host" in
#mips-sgi-irix5.* | mips-sgi-irix6.*) TARGET=MIPS; ACCESS_UNALIGNED="no";;
-i*86-*-*) TARGET=X86; arch_target=x86;;
+i*86-*-*) TARGET=X86; arch_target=x86; JIT_SUPPORTED=yes;;
sparc*-*-*) TARGET=SPARC; arch_target=sparc; ACCESS_UNALIGNED="no";;
#alpha*-*-linux* | alpha*-*-osf*) TARGET=ALPHA; ACCESS_UNALIGNED="no";;
#m68k-*-linux*) TARGET=M68K;;
@@ -538,6 +540,8 @@ AM_CONDITIONAL(POWERPC, test x$TARGET = xPOWERPC)
AM_CONDITIONAL(ARM, test x$TARGET = xARM)
AM_CONDITIONAL(S390, test x$TARGET = xS390)
+AM_CONDITIONAL(JIT_SUPPORTED, test x$JIT_SUPPORTED = xyes)
+
LIBC="libc.so.6"
AC_SUBST(LIBC)