Prechádzať zdrojové kódy

2008-11-12 Zoltan Varga <[email protected]>

	* configure.in: Add an ENABLE_AOT variable to config.make, currently only
	enabled for AMD64.

svn path=/trunk/mono/; revision=118623
Zoltan Varga 17 rokov pred
rodič
commit
408da0ace3
2 zmenil súbory, kde vykonal 10 pridanie a 1 odobranie
  1. 5 0
      ChangeLog
  2. 5 1
      configure.in

+ 5 - 0
ChangeLog

@@ -1,3 +1,8 @@
+2008-11-12  Zoltan Varga  <[email protected]>
+
+	* configure.in: Add an ENABLE_AOT variable to config.make, currently only
+	enabled for AMD64.
+
 2008-11-11  Zoltan Varga  <[email protected]>
 
 	* configure.in: Bump version to 2.3.

+ 5 - 1
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