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:
authorZoltan Varga <vargaz@gmail.com>2008-11-12 22:06:06 +0300
committerZoltan Varga <vargaz@gmail.com>2008-11-12 22:06:06 +0300
commit408da0ace3e71eb6facaafea91f4b9a7b8a5fdac (patch)
treed0ea1e86c7afc3e55cd050ffa6a6a54fbed58451 /configure.in
parentd6e3b63a7633a25679124865eddea5d74401f52c (diff)
2008-11-12 Zoltan Varga <vargaz@gmail.com>
* configure.in: Add an ENABLE_AOT variable to config.make, currently only enabled for AMD64. svn path=/trunk/mono/; revision=118623
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 15e64d73a83..38aa8264f44 100644
--- a/configure.in
+++ b/configure.in
@@ -2387,6 +2387,10 @@ fi
echo "MONO_VERSION = $myver" >> $srcdir/$mcsdir/build/config.make
fi
+ if test x$TARGET = xAMD64 -a x$platform_win32 = xno; then
+ echo "ENABLE_AOT = 1" >> $srcdir/$mcsdir/build/config.make
+ fi
+
# if we have an olive folder, override the default settings
if test -d $olivedir; then
@@ -2428,7 +2432,7 @@ echo "
"
if test x$with_static_mono = xno -a "x$platform_win32" != "xyes"; then
- AC_MSG_WARN(Turning off static Mono is a risk, you might run into unexepcted bugs)
+ AC_MSG_WARN(Turning off static Mono is a risk, you might run into unexpected bugs)
fi
if test x$gc = xsgen; then