2004-05-18 Patrik Torstensson <totte@hiddenpeaks.com>
[mono.git] / README
diff --git a/README b/README
index de3e8c6bb2b3a420008e69ea1cf6c6a1ccd08da8..2b6683f503fc0b56ba1d810b4dbf44e5fdd880c0 100644 (file)
--- a/README
+++ b/README
@@ -45,15 +45,25 @@ This is Mono.
                make
                make install
 
+       Mono supports a JIT engine on x86, SPARC and PowerPC systems.
+       The various commands that ship with Mono default to the JIT engine
+       on x86 and SPARC, to turn it on for PPC systems, use the --with-jit=yes 
+       command line option to configure.
+
+       MacOS X Users: you will need to download the latest Boehm GC
+       Alpha release for garbage collection to work properly.
+
        If you obtained this as a snapshot, you will need an existing
        Mono installation.  To upgrade your installation, unpack both
        mono and mcs:
 
                tar xzf mcs-XXXX.tar.gz
                tar xzf mono-XXXX.tar.gz
-               cd mono-XXXX
+               mv mono-XXX mono
+               mv mcs-XXX mcs
+               cd mono
                ./autogen.sh --prefix=/usr/local
-               make fullbuild
+               make bootstrap 
 
     c. Upgrade from CVS
     -------------------
@@ -80,11 +90,15 @@ This is Mono.
        Then, go into the mono directory, and configure:
 
                cd mono
-               ./autogen --prefix=/usr/local
+               ./autogen.sh --prefix=/usr/local
+
+       Then compile using the special target `bootstrap':
 
-       Then compile using the special target `fullbuild':
+               make bootstrap
+       
+       You can now install it:
 
-               make fullbuild
+               make install
 
        This step will compile and install at the same time.