2007-04-17 Jeffrey Stedfast <fejj@novell.com>
[mono.git] / README
1
2 This is Mono.
3
4         1. Installation
5         2. Using Mono
6         3. Directory Roadmap
7
8 1. Compilation and Installation
9 ===============================
10
11    a. Build Requirements
12    ---------------------
13
14         To build Mono, you will need the following components:
15
16                 * pkg-config
17
18                   Available from: http://www.freedesktop.org/Software/pkgconfig
19
20                 * glib 2.4
21
22                   Available from: http://www.gtk.org/
23
24         On Itanium, you must obtain libunwind:
25
26                 http://www.hpl.hp.com/research/linux/libunwind/download.php4
27
28         On Solaris, make sure that you used GNU tar to unpack this package, as
29         Solaris tar will not unpack this correctly, and you will get strange errors.
30
31         On Solaris, make sure that you use the GNU toolchain to build the software.
32
33         Optional dependencies:
34
35                 * libgdiplus
36
37                   If you want to get support for System.Drawing, you will need to get
38                   Libgdiplus.
39
40                 * libzlib
41
42                   This library and the development headers are required for compression
43                   file support in the 2.0 profile.
44
45     b. Building the Software
46     ------------------------
47         
48         If you obtained this package as an officially released tarball,
49         this is very simple, use configure and make:
50
51                 ./configure --prefix=/usr/local
52                 make
53                 make install
54
55         Mono supports a JIT engine on x86, SPARC, SPARCv9, S/390, AMD64, ARM
56         and PowerPC systems.
57
58         If you obtained this as a snapshot, you will need an existing
59         Mono installation.  To upgrade your installation, unpack both
60         mono and mcs:
61
62                 tar xzf mcs-XXXX.tar.gz
63                 tar xzf mono-XXXX.tar.gz
64                 mv mono-XXX mono
65                 mv mcs-XXX mcs
66                 cd mono
67                 ./autogen.sh --prefix=/usr/local
68                 make
69
70     c. Building the software from SVN
71     ---------------------------------
72
73         If you are building the software from SVN, make sure that you
74         have up-to-date mcs and mono sources:
75
76                 svn co svn+ssh://USER@mono-cvs.ximian.com/source/trunk/mono
77                 svn co svn+ssh://USER@mono-cvs.ximian.com/source/trunk/mcs
78
79         Then, go into the mono directory, and configure:
80
81                 cd mono
82                 ./autogen.sh --prefix=/usr/local
83                 make
84
85         For people with non-standard installations of the auto* utils and of
86         pkg-config (common on misconfigured OSX and windows boxes), you could get
87         an error like this:
88
89         ./configure: line 19176: syntax error near unexpected token `PKG_CHECK_MODULES(BASE_DEPENDENCIES,' ...
90
91         This means that you need to set the ACLOCAL_FLAGS environment var
92         when invoking autogen.sh, like this:
93
94                 ACLOCAL_FLAGS="-I $acprefix/share/aclocal" ./autogen.sh --prefix=/usr/loca
95         
96         where $acprefix is the prefix where aclocal has been installed.
97
98         This will automatically go into the mcs/ tree and build the
99         binaries there.
100
101         This assumes that you have a working mono installation, and that
102         there's a C# compiler named 'mcs', and a corresponding IL
103         runtime called 'mono'.  You can use two make variables
104         EXTERNAL_MCS and EXTERNAL_RUNTIME to override these.  e.g., you
105         can say
106
107           make EXTERNAL_MCS=/foo/bar/mcs EXTERNAL_RUNTIME=/somewhere/else/mono
108         
109         If you don't have a working Mono installation
110         ---------------------------------------------
111
112         If you don't have a working Mono installation, an obvious choice
113         is to install the latest released packages of 'mono' for your
114         distribution and running autogen.sh; make; make install in the
115         mono module directory.
116
117         You can also try a slightly more risky approach: this may not work,
118         so start from the released tarball as detailed above.
119
120         This works by first getting the latest version of the 'monolite'
121         distribution, which contains just enough to run the 'mcs'
122         compiler.  You do this with:
123
124                 make get-monolite-latest
125
126         This will download and automatically gunzip and untar the
127         tarball, and place the files appropriately so that you can then
128         just run:
129
130                 make
131
132         To ensure that you're using the 'monolite' distribution, you can
133         also try passing EXTERNAL_MCS=false on the make command-line.
134
135         Testing and Installation
136          ------------------------
137
138         You can run (part of) the mono and mcs testsuites with the command:
139
140                 make check
141
142         All tests should pass.  
143
144         If you want more extensive tests, including those that test the
145         class libraries, you need to re-run 'configure' with the
146         '--enable-nunit-tests' flag, and try
147
148                 make -k check
149
150         Expect to find a few testsuite failures.  As a sanity check, you
151         can compare the failures you got with
152
153                 http://go-mono.com/tests/displayTestResults.php
154
155         You can now install mono with:
156
157                 make install
158
159         Failure to follow these steps may result in a broken installation. 
160
161     d. Common Configuration Options
162     -------------------------------
163
164         The following are the configuration options that someone
165         building Mono might want to use:
166         
167
168         --with-gc=[boehm, included, sgen, none]
169
170                 Selects the garbage collector engine to use, the
171                 default is the "included" value.
172         
173                 included: 
174                         This is the default value, and its
175                         the most feature complete, it will allow Mono
176                         to use typed allocations and support the
177                         debugger.
178
179                         It is essentially a slightly modified Boehm GC
180
181                 boehm:
182                         This is used to use a system-install Boehm GC,
183                         it is useful to test new features available in
184                         Boehm GC, but we do not recommend that people
185                         use this, as it disables a few features.
186
187                 sgen:
188                         The under-development Generational GC for
189                         Mono, do not use this in production.
190
191                 none:
192                         Disables the inclusion of a garbage
193                         collector.  
194
195         --with-tls=__thread,pthread
196
197                 Controls how Mono should access thread local storage,
198                 pthread forces Mono to use the pthread APIs, while
199                 __thread uses compiler-optimized access to it.
200
201                 Although __thread is faster, it requires support from
202                 the compiler, kernel and libc.   Old Linux systems do
203                 not support with __thread.
204
205                 This value is typically pre-configured and there is no
206                 need to set it, unless you are trying to debug a
207                 problem.
208
209         --with-sigaltstack=yes,no
210
211                 Experimental: Use at your own risk, it is known to
212                 cause problems with garbage collection and is hard to
213                 reproduce those bugs.
214
215                 This controls whether Mono will install a special
216                 signal handler to handle stack overflows.   If set to
217                 "yes", it will turn stack overflows into the
218                 StackOverflowException.  Otherwise when a stack
219                 overflow happens, your program will receive a
220                 segmentation fault.
221
222                 The configure script will try to detect if your
223                 operating system supports this.   Some older Linux
224                 systems do not support this feature, or you might want
225                 to override the auto-detection.
226
227         --with-static-mono=yes,no
228
229                 This controls whether `mono' should link against a
230                 static library (libmono.a) or a shared library
231                 (libmono.so). 
232
233                 This defaults to yes, and will improve the performance
234                 of the `mono' program. 
235
236                 This only affects the `mono' binary, the shared
237                 library libmono.so will always be produced for
238                 developers that want to embed the runtime in their
239                 application.
240
241         --with-xen-opt=yes,no
242
243                 The default value for this is `yes', and it makes Mono
244                 generate code which might be slightly slower on
245                 average systems, but the resulting executable will run
246                 faster under the Xen virtualization system.
247
248         --with-large-heap=yes,no
249
250                 Enable support for GC heaps larger than 3GB.
251
252                 This value is set to `no' by default.
253
254         --with-ikvm-native=yes,no
255
256                 Controls whether the IKVM JNI interface library is
257                 built or not.  This is used if you are planning on
258                 using the IKVM Java Virtual machine with Mono.
259
260                 This defaults to `yes'.
261
262         --with-preview=yes,no
263
264                 Whether you want to build libraries that are still not
265                 completed (The 2.0 APIs).   It defaults to `yes'.
266
267         --with-libgdiplus=installed,sibling,<path>
268
269                 This is used to configure where should Mono look for
270                 libgdiplus when running the System.Drawing tests.
271
272                 It defaults to `installed', which means that the
273                 library is available to Mono through the regular
274                 system setup.
275
276                 `sibling' can be used to specify that a libgdiplus
277                 that resides as a sibling of this directory (mono)
278                 should be used.
279
280                 Or you can specify a path to a libgdiplus.
281
282         --disable-shared-memory 
283
284                 Use this option to disable the use of shared memory in
285                 Mono (this is equivalent to setting the MONO_DISABLE_SHM
286                 environment variable, although this removes the feature
287                 completely).
288
289                 Disabling the shared memory support will disable certain
290                 features like cross-process named mutexes.
291
292         --enable-minimal=LIST
293
294                 Use this feature to specify optional runtime
295                 components that you might not want to include.  This
296                 is only useful for developers embedding Mono that
297                 require a subset of Mono functionality.
298
299                 The list is a comma-separated list of components that
300                 should be removed, these are:
301
302                 aot:
303                         Disables support for the Ahead of Time
304                         compilation.
305
306                 profiler:
307                         Disables support for the default profiler.
308
309                 decimal:
310                         Disables support for System.Decimal.
311
312                 pinvoke:
313                         Support for Platform Invocation services,
314                         disabling this will drop support for any
315                         libraries using DllImport.
316
317                 debug:
318                         Drop debugging support.
319
320                 reflection_emit:
321                         Drop System.Reflection.Emit support
322
323                 large_code:
324                         Disables support for large assemblies.
325
326                 logging:
327                         Disables support for debug logging.
328
329                 com:
330                         Disables COM support.
331
332                 ssa:
333                         Disables compilation for the SSA optimization
334                         framework, and the various SSA-based
335                         optimizations.
336
337                 generics:
338                         Generics support.  Disabling this will not
339                         allow Mono to run any 2.0 libraries or
340                         code that contains generics.
341                 
342         --disable-dev-random
343
344                 Mono uses /dev/random to obtain good random data for
345                 any source that requires random numbers.   If your
346                 system does not support this, you might want to
347                 disable it.
348
349                 There are a number of runtime options to control this
350                 also, see the man page.
351
352
353 2. Using Mono
354 =============
355
356         Once you have installed the software, you can run a few programs:
357
358         * runtime engine
359
360                 mono program.exe
361
362         * C# compiler
363
364                 mcs program.cs
365
366         * CIL Disassembler
367
368                 monodis program.exe
369
370         See the man pages for mono(1), mint(1), monodis(1) and mcs(2)
371         for further details.
372
373 3. Directory Roadmap
374 ====================
375
376         docs/
377                 Technical documents about the Mono runtime.
378
379         data/
380                 Configuration files installed as part of the Mono runtime.
381
382         mono/
383                 The core of the Mono Runtime.
384
385                 metadata/
386                         The object system and metadata reader.
387
388                 mini/
389                         The Just in Time Compiler.
390
391                 dis/
392                         CIL executable Disassembler
393
394                 cli/
395                         Common code for the JIT and the interpreter.
396
397                 io-layer/
398                         The I/O layer and system abstraction for 
399                         emulating the .NET IO model.
400
401                 cil/
402                         Common Intermediate Representation, XML
403                         definition of the CIL bytecodes.
404
405                 interp/
406                         Interpreter for CLI executables (obsolete).
407
408                 arch/
409                         Architecture specific portions.
410
411         man/
412
413                 Manual pages for the various Mono commands and programs.
414
415         scripts/
416
417                 Scripts used to invoke Mono and the corresponding program.
418
419         runtime/
420
421                 A directory that contains the Makefiles that link the
422                 mono/ and mcs/ build systems.
423