Mon Mar 8 17:35:26 CET 2010 Paolo Molaro <lupus@ximian.com>
authorPaolo Molaro <lupus@oddwiz.org>
Mon, 8 Mar 2010 16:50:02 +0000 (16:50 -0000)
committerPaolo Molaro <lupus@oddwiz.org>
Mon, 8 Mar 2010 16:50:02 +0000 (16:50 -0000)
* driver.c: report also other misc build options.

svn path=/trunk/mono/; revision=153267

mono/mini/ChangeLog
mono/mini/driver.c

index c440acb64a926d1ca38de5155cac3e1eb9ab78ec..3e26393320e145b9a025caec51206cf60dabbc10 100755 (executable)
@@ -1,3 +1,8 @@
+
+Mon Mar 8 17:35:26 CET 2010 Paolo Molaro <lupus@ximian.com>
+
+       * driver.c: report also other misc build options.
+
 2010-03-07  Rodrigo Kumpera  <rkumpera@novell.com>
 
        * method-to-ir.c: Generate better code for the NewObject
index 89c86c129f917c82664238aca2108cad81a7e830..3607a96baa9e1af401ca4e8c3188221b0f109c56 100644 (file)
@@ -1198,6 +1198,20 @@ static const char info[] =
 #endif
         "\tArchitecture:  " ARCHITECTURE "\n"
        "\tDisabled:      " DISABLED_FEATURES "\n"
+       "\tMisc:          "
+#ifdef MONO_SMALL_CONFIG
+       "smallconfig "
+#endif
+#ifdef MONO_BIG_ARRAYS
+       "bigarrays "
+#endif
+#ifdef MONO_DEBUGGER_SUPPORTED
+       "debugger "
+#endif
+#if defined(MONO_ARCH_SOFT_DEBUG_SUPPORTED) && !defined(DISABLE_SOFT_DEBUG)
+       "softdebug "
+#endif
+               "\n"
 #ifdef MONO_ARCH_LLVM_SUPPORTED
        "\tLLVM supported\n"
 #endif