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:
authorJohn Luke <jluke@mono-cvs.ximian.com>2003-10-30 03:12:41 +0300
committerJohn Luke <jluke@mono-cvs.ximian.com>2003-10-30 03:12:41 +0300
commit0bf6568c0fb27ee463a5c85ad48f4b832075bf39 (patch)
treeca8555596bdbde3f2d041abd9f0e23e17ecb84f3 /mcs/INSTALL.txt
parenta80dd32559f547bdbd67c4694d6f7d489e0f9a3a (diff)
fix typo
add small troubleshooting section referencing daily builds and using monolite tarballs. svn path=/trunk/mcs/; revision=19472
Diffstat (limited to 'mcs/INSTALL.txt')
-rw-r--r--mcs/INSTALL.txt17
1 files changed, 16 insertions, 1 deletions
diff --git a/mcs/INSTALL.txt b/mcs/INSTALL.txt
index 0f663e82cc7..edc5d31e68d 100644
--- a/mcs/INSTALL.txt
+++ b/mcs/INSTALL.txt
@@ -20,7 +20,7 @@ following command:
make fullbuild
That will build and install the code in a single pass. The
-compilation is bundled with the build due to depedencies on the class
+compilation is bundled with the build due to dependencies on the class
libraries on the runtime.
Build Features for Developers.
@@ -55,6 +55,21 @@ If you get "corlib out of sync" errors, try
The difference between the two modes is explained farther down.
+Troubleshooting
+===============
+
+Occasionally, something in the compiler or runtime changes enough that
+an existing installation cannot complete a full build from cvs. In this case,
+go to http://go-mono.com/daily and download a monocharge or monolite tarball.
+Unpack and copy the .dlls to $prefix/lib and .exes to $prefix/bin/. Then
+you should be able to complete the build normally (i.e. using make fullbuild).
+
+ wget http://go-mono.com/daily/monolite-20031028.tar.gz
+ tar -zxvf monolite-20031028.tar.gz
+ cd monolite-20031028
+ cp *.exe /usr/local/bin/.
+ cp *.dll /usr/local/lib/.
+
Monocharges
===========