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
path: root/README
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2010-06-24 04:11:13 +0400
committerMiguel de Icaza <miguel@gnome.org>2010-06-24 04:11:13 +0400
commitff4f943454cd421b6cc549b346fa684161616061 (patch)
treee14dbf86da62696c4ebdcd0477a7fc8d1eba29c4 /README
parent48eb257d5c0dd1156831056ba71de5a1caebf6c5 (diff)
2010-06-23 Miguel de Icaza <miguel@novell.com>
* configure.in: By default, we will now also buils an SGen-aware VM by default. This can be turned off by using the --with-sgen=no command line option. 2010-06-23 Miguel de Icaza <miguel@novell.com> * Makefile.am: Add support for building a sgen-aware versions of the libraries: libmonoruntimesgen.la libmonoruntimesgen-static.la, they share all the components of the default, but use a differen set of CFLAGS to enable SGEN instead. 2010-06-23 Miguel de Icaza <miguel@novell.com> * Makefile.am: Build the mono-sgen binary a Mono VM with the Sgen GC enabled as well as libmono-sgen-2.0 and libomonosgen-static svn path=/trunk/mono/; revision=159468
Diffstat (limited to 'README')
-rw-r--r--README17
1 files changed, 11 insertions, 6 deletions
diff --git a/README b/README
index abb03144188..d3387c592a2 100644
--- a/README
+++ b/README
@@ -172,11 +172,20 @@ This is Mono.
The following are the configuration options that someone
building Mono might want to use:
+ --with-sgen=yes,no
+
+ Generational GC support: Used to enable or disable the
+ compilation of a Mono runtime with the SGen garbage collector.
+
+ On platforms that support it, after building Mono, you
+ will have both a mono binary and a mono-sgen binary.
+ Mono uses Boehm, while mono-sgen uses the Simple
+ Generational GC.
--with-gc=[boehm, included, sgen, none]
- Selects the garbage collector engine to use, the
- default is the "included" value.
+ Selects the default Boehm garbage collector engine to
+ use, the default is the "included" value.
included:
This is the default value, and its
@@ -192,10 +201,6 @@ This is Mono.
Boehm GC, but we do not recommend that people
use this, as it disables a few features.
- sgen:
- The under-development Generational GC for
- Mono, do not use this in production.
-
none:
Disables the inclusion of a garbage
collector.