README.md 16.8 KB
Newer Older
M
Miguel de Icaza 已提交
1 2 3 4
Mono is a software platform designed to allow developers to easily
create cross platform applications.  It is an open source
implementation of Microsoft's .NET Framework based on the ECMA
standards for C# and the Common Language Runtime.
M
Miguel de Icaza 已提交
5

6 7
The Mono project is part of the [.NET Foundation](http://www.dotnetfoundation.org/)

U
Ungureanu Marius 已提交
8 9
[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mono/mono?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

10
1. [Compilation and Installation](#compilation-and-installation)
11 12
2. [Using Mono](#using-mono)
3. [Directory Roadmap](#directory-roadmap)
13 14 15
4. [Contributing to Mono](#contributing-to-mono)
5. [Reporting bugs](#reporting-bugs)
6. [Configuration Options](#configuration-options)
16
7. [Working with Submodules](#working-with-submodules)
17 18 19

**Build Status**

20 21 22 23 24 25 26 27
Officially supported architectures:

| debian-amd64            | debian-i386            | debian-armel            | debian-armhf            | windows-amd64             |
|-------------------------|------------------------|-------------------------|-------------------------|---------------------------|
| [![debian-amd64][1]][2] | [![debian-i386][3]][4] | [![debian-armel][5]][6] | [![debian-armhf][7]][8] | [![windows-amd64][9]][10] |

Community supported architectures:

28 29 30
| centos-s390x              |
|---------------------------|
| [![centos-s390x][11]][12] |
31 32 33 34 35

[1]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-amd64/badge/icon
[2]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-amd64/
[3]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-i386/badge/icon
[4]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-i386/
36 37 38 39
[5]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armel/badge/icon
[6]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armel/
[7]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armhf/badge/icon
[8]: http://jenkins.mono-project.com/job/test-mono-mainline/label=debian-armhf/
40 41
[9]: https://ci.appveyor.com/api/projects/status/1e61ebdfpbiei58v/branch/master?svg=true
[10]: https://ci.appveyor.com/project/ajlennon/mono-817/branch/master
L
Lucas 已提交
42 43
[11]: https://jenkins.mono-project.com/job/z/label=centos-s390x/badge/icon
[12]: https://jenkins.mono-project.com/job/z/label=centos-s390x
44

45 46
Compilation and Installation
============================
47

48
Building the Software
49
---------------------
M
Update  
Miguel de Icaza 已提交
50

51 52 53 54
Please see our guides for building Mono on
[Mac OS X](http://www.mono-project.com/docs/compiling-mono/mac/),
[Linux](http://www.mono-project.com/docs/compiling-mono/linux/) and 
[Windows](http://www.mono-project.com/docs/compiling-mono/windows/).
M
Add  
Miguel de Icaza 已提交
55

56 57 58 59 60
Note that building from Git assumes that you already have Mono installed,
so please download and [install the latest Mono release](http://www.mono-project.com/download/)
before trying to build from Git. This is required because the Mono build
relies on a working Mono C# compiler to compile itself
(also known as [bootstrapping](http://en.wikipedia.org/wiki/Bootstrapping_(compilers))).
M
Add  
Miguel de Icaza 已提交
61

62 63
If you don't have a working Mono installation
---------------------------------------------
M
Update  
Miguel de Icaza 已提交
64

65 66 67
If you don't have a working Mono installation, you can try a slightly
more risky approach: getting the latest version of the 'monolite' distribution,
which contains just enough to run the 'mcs' compiler. You do this with:
M
Update  
Miguel de Icaza 已提交
68

69 70
    # Run the following line after ./autogen.sh
    make get-monolite-latest
M
Miguel de Icaza 已提交
71

72 73
This will download and place the files appropriately so that you can then
just run:
M
Miguel de Icaza 已提交
74

75
    make
M
Miguel de Icaza 已提交
76

77
The build will then use the files downloaded by `make get-monolite-latest`.
M
Meai1 已提交
78

79
Testing and Installation
80
------------------------
M
Miguel de Icaza 已提交
81

82
You can run the mono and mcs test suites with the command: `make check`.
M
Update  
Miguel de Icaza 已提交
83

84
Expect to find a few test suite failures. As a sanity check, you
85
can compare the failures you got with [https://jenkins.mono-project.com/](https://jenkins.mono-project.com/).
86

87
You can now install mono with: `make install`
88

89 90 91
You can verify your installation by using the mono-test-install
script, it can diagnose some common problems with Mono's install.
Failure to follow these steps may result in a broken installation. 
92

93 94
Using Mono
==========
M
Miguel de Icaza 已提交
95

96
Once you have installed the software, you can run a few programs:
M
README  
Miguel de Icaza 已提交
97

98
* `mono program.exe` runtime engine
M
Miguel de Icaza 已提交
99

100
* `mcs program.cs` C# compiler 
M
Miguel de Icaza 已提交
101

102
* `monodis program.exe` CIL Disassembler
M
Update  
Miguel de Icaza 已提交
103

104
See the man pages for mono(1), mcs(1) and monodis(1) for further details.
M
Update  
Miguel de Icaza 已提交
105

106 107
Directory Roadmap
=================
M
Update  
Miguel de Icaza 已提交
108

109 110
* `acceptance-tests/` - Optional third party test suites used to validate Mono against a wider range of test cases.

111
* `data/` - Configuration files installed as part of the Mono runtime.
112

113
* `docs/` - Technical documents about the Mono runtime.
114

115
* `external/` - Git submodules for external libraries (Newtonsoft.Json, ikvm, etc).
M
Miguel de Icaza 已提交
116

117
* `man/` - Manual pages for the various Mono commands and programs.
M
Miguel de Icaza 已提交
118

119
* `mcs/` - The class libraries, compiler and tools
120

121
  * `class/` - The class libraries (like System.*, Microsoft.Build, etc.)
122

123
  * `mcs/` - The Mono C# compiler written in C#
124

125
  * `tools/` - Tools like gacutil, ikdasm, mdoc, etc.
126

127
* `mono/` - The core of the Mono Runtime.
M
Update  
Miguel de Icaza 已提交
128

129
  * `arch/` - Architecture specific portions.
130

131 132
  * `cil/` - Common Intermediate Representation, XML
definition of the CIL bytecodes.
133

134
  * `dis/` - CIL executable Disassembler
135

136 137
  * `io-layer/` - The I/O layer and system abstraction for 
emulating the .NET IO model.
138

139
  * `metadata/` - The object system and metadata reader.
M
Update  
Miguel de Icaza 已提交
140

141
  * `mini/` - The Just in Time Compiler.
M
Update  
Miguel de Icaza 已提交
142

143 144
* `runtime/` - A directory that contains the Makefiles that link the
mono/ and mcs/ build systems.
145

146 147
* `samples/` -Some simple sample programs on uses of the Mono
runtime as an embedded library.   
148

149
* `scripts/` - Scripts used to invoke Mono and the corresponding program.
150

151 152
Contributing to Mono
====================
153

M
Miguel de Icaza 已提交
154 155 156 157 158
Before submitting changes to Mono, please review the [contribution
guidelines](http://www.mono-project.com/community/contributing/).
Please pay particular attention to the [Important
Rules](http://www.mono-project.com/community/contributing/#important-rules)
section.
159

160 161
Reporting bugs
==============
162

M
Miguel de Icaza 已提交
163 164
To submit bug reports, please use [Xamarin's
Bugzilla](https://bugzilla.xamarin.com/)
165

166
Please use the search facility to ensure the same bug hasn't already
M
Miguel de Icaza 已提交
167 168
been submitted and follow our
[guidelines](http://www.mono-project.com/community/bugs/make-a-good-bug-report/)
169 170 171 172
on how to make a good bug report.

Configuration Options
=====================
173

M
Miguel de Icaza 已提交
174 175
The following are the configuration options that someone building Mono
might want to use:
176

M
Miguel de Icaza 已提交
177 178 179
* `--with-sgen=yes,no` - Generational GC support: Used to enable or
disable the compilation of a Mono runtime with the SGen garbage
collector.
180

181
  * On platforms that support it, after building Mono, you will have
M
Miguel de Icaza 已提交
182 183
both a `mono` binary and a `mono-sgen` binary. `mono` uses Boehm,
while `mono-sgen` uses the Simple Generational GC.
184

M
Miguel de Icaza 已提交
185 186
* `--with-gc=[included, boehm, none]` - Selects the default Boehm
garbage collector engine to use.
187

P
PAVAN BANSAL 已提交
188
  * *included*: (*slightly modified Boehm GC*) This is the default
M
Miguel de Icaza 已提交
189 190
value for the Boehm GC, and it's the most feature complete, it will
allow Mono to use typed allocations and support the debugger.
191

M
Miguel de Icaza 已提交
192 193 194
  * *boehm*: This is used to use a system-install Boehm GC, it is
useful to test new features available in Boehm GC, but we do not
recommend that people use this, as it disables a few features.
M
Update  
Miguel de Icaza 已提交
195

196 197
  * *none*:
Disables the inclusion of a garbage collector.
M
Mhm  
Miguel de Icaza 已提交
198

199
  * This defaults to `included`.
M
Update  
Miguel de Icaza 已提交
200

M
Miguel de Icaza 已提交
201 202 203 204 205 206 207
* `--with-cooperative-gc`

  * If you pass this flag the Mono runtime is configured to only use
  the cooperative mode of the garbage collector.  If you do not pass
  this flag, then you can control at runtime the use of the
  cooperative GC mode by setting the `MONO_ENABLE_COOP` flag.
  
208
* `--with-tls=__thread,pthread`
M
Miguel de Icaza 已提交
209

210 211 212
  * Controls how Mono should access thread local storage,
pthread forces Mono to use the pthread APIs, while
__thread uses compiler-optimized access to it.
M
Update  
Miguel de Icaza 已提交
213

214 215 216
  * Although __thread is faster, it requires support from
the compiler, kernel and libc. Old Linux systems do
not support with __thread.
M
Miguel de Icaza 已提交
217

218 219
  * This value is typically pre-configured and there is no
need to set it, unless you are trying to debug a problem.
220

221
* `--with-sigaltstack=yes,no`
222

223 224 225
  * **Experimental**: Use at your own risk, it is known to
cause problems with garbage collection and is hard to
reproduce those bugs.
M
Miguel de Icaza 已提交
226

227 228 229 230 231 232
  * This controls whether Mono will install a special
signal handler to handle stack overflows. If set to
`yes`, it will turn stack overflows into the
StackOverflowException. Otherwise when a stack
overflow happens, your program will receive a
segmentation fault.
M
Miguel de Icaza 已提交
233

234 235 236 237
  * The configure script will try to detect if your
operating system supports this. Some older Linux
systems do not support this feature, or you might want
to override the auto-detection.
M
Miguel de Icaza 已提交
238

239
* `--with-static_mono=yes,no`
M
Miguel de Icaza 已提交
240

241 242 243
  * This controls whether `mono` should link against a
static library (libmono.a) or a shared library
(libmono.so). 
M
Miguel de Icaza 已提交
244

245 246
  * This defaults to `yes`, and will improve the performance
of the `mono` program. 
M
Miguel de Icaza 已提交
247

248 249 250 251
  * This only affects the `mono' binary, the shared
library libmono.so will always be produced for
developers that want to embed the runtime in their
application.
M
Miguel de Icaza 已提交
252

253
* `--with-xen-opt=yes,no` - Optimize code for Xen virtualization.
M
Miguel de Icaza 已提交
254

255 256 257
  * It makes Mono generate code which might be slightly
slower on average systems, but the resulting executable will run
faster under the Xen virtualization system.
M
Miguel de Icaza 已提交
258

259
  * This defaults to `yes`.
M
Miguel de Icaza 已提交
260

261
* `--with-large-heap=yes,no` - Enable support for GC heaps larger than 3GB.
M
Miguel de Icaza 已提交
262

263
  * This defaults to `no`.
M
Update  
Miguel de Icaza 已提交
264

265 266
* `--enable-small-config=yes,no` - Enable some tweaks to reduce memory usage
and disk footprint at the expense of some capabilities.
M
Miguel de Icaza 已提交
267

268 269 270 271
  * Typically this means that the number of threads that can be created
is limited (256), that the maximum heap size is also reduced (256 MB)
and other such limitations that still make mono useful, but more suitable
to embedded devices (like mobile phones).
M
Miguel de Icaza 已提交
272

273
  * This defaults to `no`.
M
Miguel de Icaza 已提交
274

275 276
* `--with-ikvm-native=yes,no` - Controls whether the IKVM JNI interface library is
built or not.
M
Miguel de Icaza 已提交
277

278 279
  * This is used if you are planning on
using the IKVM Java Virtual machine with Mono.
M
Miguel de Icaza 已提交
280

281
  * This defaults to `yes`.
M
Miguel de Icaza 已提交
282

283 284
* `--with-profile4=yes,no` - Whether you want to build the 4.x profile libraries
and runtime.
M
Miguel de Icaza 已提交
285

286
  * This defaults to `yes`.
M
Miguel de Icaza 已提交
287

288 289
* `--with-libgdiplus=installed,sibling,<path>` - Configure where Mono
searches for libgdiplus when running System.Drawing tests.
M
Miguel de Icaza 已提交
290

291 292 293
  * It defaults to `installed`, which means that the
library is available to Mono through the regular
system setup.
M
Miguel de Icaza 已提交
294

295
  * `sibling` can be used to specify that a libgdiplus
296 297
that resides as a sibling of this directory (mono)
should be used.
M
Miguel de Icaza 已提交
298

299
 * Or you can specify a path to a libgdiplus.
M
Miguel de Icaza 已提交
300

301
* `--disable-shared-memory`
M
Miguel de Icaza 已提交
302

303 304 305 306
  * Use this option to disable the use of shared memory in
Mono (this is equivalent to setting the MONO_DISABLE_SHM
environment variable, although this removes the feature
completely).
M
update  
Miguel de Icaza 已提交
307

308 309
  * Disabling the shared memory support will disable certain
features like cross-process named mutexes.
M
update  
Miguel de Icaza 已提交
310

311
* `--enable-minimal=LIST`
M
update  
Miguel de Icaza 已提交
312

313 314 315 316 317 318
  * Use this feature to specify optional runtime
components that you might not want to include.  This
is only useful for developers embedding Mono that
require a subset of Mono functionality.
  * The list is a comma-separated list of components that
should be removed, these are:
319

320 321
    * `aot`:
Disables support for the Ahead of Time compilation.
322

323 324 325 326
    * `attach`:
Support for the Mono.Management assembly and the
VMAttach API (allowing code to be injected into
a target VM)
327

328 329
    * `com`:
Disables COM support.
330

331 332
    * `debug`:
Drop debugging support.
333

334 335
    * `decimal`:
Disables support for System.Decimal.
M
Miguel de Icaza 已提交
336

337 338 339 340 341
    * `full_messages`:
By default Mono comes with a full table
of messages for error codes. This feature
turns off uncommon error messages and reduces
the runtime size.
M
Miguel de Icaza 已提交
342

343 344 345 346
    * `generics`:
Generics support.  Disabling this will not
allow Mono to run any 2.0 libraries or
code that contains generics.
M
Miguel de Icaza 已提交
347

348 349 350 351 352
    * `jit`:
Removes the JIT engine from the build, this reduces
the executable size, and requires that all code
executed by the virtual machine be compiled with
Full AOT before execution.
M
Miguel de Icaza 已提交
353

354 355
    * `large_code`:
Disables support for large assemblies.
M
Miguel de Icaza 已提交
356

357 358
    * `logging`:
Disables support for debug logging.
M
Update  
Miguel de Icaza 已提交
359

360 361 362 363
    * `pinvoke`:
Support for Platform Invocation services,
disabling this will drop support for any
libraries using DllImport.
M
Update  
Miguel de Icaza 已提交
364

365 366 367 368
    * `portability`:
Removes support for MONO_IOMAP, the environment
variables for simplifying porting applications that 
are case-insensitive and that mix the Unix and Windows path separators.
M
Update  
Miguel de Icaza 已提交
369

370 371
    * `profiler`:
Disables support for the default profiler.
M
Miguel de Icaza 已提交
372

373 374
    * `reflection_emit`:
Drop System.Reflection.Emit support
M
Miguel de Icaza 已提交
375

376 377 378 379
    * `reflection_emit_save`:
Drop support for saving dynamically created
assemblies (AssemblyBuilderAccess.Save) in
System.Reflection.Emit.
M
Miguel de Icaza 已提交
380

381 382 383 384
    * `shadow_copy`:
Disables support for AppDomain's shadow copies
(you can disable this if you do not plan on 
using appdomains).
M
Miguel de Icaza 已提交
385

386 387 388
    * `simd`:
Disables support for the Mono.SIMD intrinsics
library.
M
Miguel de Icaza 已提交
389

390 391 392
    * `ssa`:
Disables compilation for the SSA optimization
framework, and the various SSA-based optimizations.
393

394 395
* `--enable-llvm`
* `--enable-loadedllvm`
M
Miguel de Icaza 已提交
396

397 398 399 400
  * This enables the use of LLVM as a code generation engine
for Mono.  The LLVM code generator and optimizer will be 
used instead of Mono's built-in code generator for both
Just in Time and Ahead of Time compilations.
M
Miguel de Icaza 已提交
401

402
  * See http://www.mono-project.com/docs/advanced/mono-llvm/ for the 
403
full details and up-to-date information on this feature.
M
Miguel de Icaza 已提交
404

405 406
  * You will need to have an LLVM built that Mono can link
against.
407

408
  * The `--enable-loadedllvm` variant will make the LLVM backend
409 410
into a runtime-loadable module instead of linking it directly
into the main mono binary.
411

412 413
* `--enable-big-arrays` - Enable use of arrays with indexes larger
than Int32.MaxValue.
414

415 416 417
  * By default Mono has the same limitation as .NET on
Win32 and Win64 and limits array indexes to 32-bit
values (even on 64-bit systems).
418

419 420 421
  * In certain scenarios where large arrays are required,
you can pass this flag and Mono will be built to
support 64-bit arrays.
M
Miguel de Icaza 已提交
422

423 424 425
  * This is not the default as it breaks the C embedding
ABI that we have exposed through the Mono development
cycle.
M
Miguel de Icaza 已提交
426

427
* `--enable-parallel-mark`
M
Miguel de Icaza 已提交
428

429 430 431
  * Use this option to enable the garbage collector to use
multiple CPUs to do its work.  This helps performance
on multi-CPU machines as the work is divided across CPUS.
M
Miguel de Icaza 已提交
432

433 434 435 436
  * This option is not currently the default on OSX
as it runs into issues there.

  * This option only applies to the Boehm GC.
437

438
* `--enable-dtrace`
M
Miguel de Icaza 已提交
439

440 441 442
  * On Solaris and MacOS X builds a version of the Mono
runtime that contains DTrace probes and can
participate in the system profiling using DTrace.
M
Miguel de Icaza 已提交
443

444
* `--disable-dev-random`
M
Update  
Miguel de Icaza 已提交
445

446 447 448 449
  * Mono uses /dev/random to obtain good random data for
any source that requires random numbers.   If your
system does not support this, you might want to
disable it.
M
Update  
Miguel de Icaza 已提交
450

451 452
  * There are a number of runtime options to control this
also, see the man page.
M
Update  
Miguel de Icaza 已提交
453

454
* `--enable-nacl`
P
 
Paolo Molaro 已提交
455

456 457 458
  * This configures the Mono compiler to generate code
suitable to be used by Google's Native Client:
http://code.google.com/p/nativeclient/
M
Update  
Miguel de Icaza 已提交
459

460 461
  * Currently this is used with Mono's AOT engine as
Native Client does not support JIT engines yet.
M
Miguel de Icaza 已提交
462 463 464 465 466 467 468 469 470 471 472 473 474

Working With Submodules
=======================

Mono references several external git submodules, for example
a fork of Microsoft's reference source code that has been altered
to be suitable for use with the Mono runtime.

This section describes how to use it.

An initial clone should be done recursively so all submodules will also be
cloned in a single pass:

475
	$ git clone --recursive git@github.com:mono/mono
M
Miguel de Icaza 已提交
476 477 478 479

Once cloned, submodules can be updated to pull down the latest changes.
This can also be done after an initial non-recursive clone:

480
	$ git submodule update --init --recursive
M
Miguel de Icaza 已提交
481 482 483

To pull external changes into a submodule:

484 485 486 487 488
	$ cd <submodule>
	$ git pull origin <branch>
	$ cd <top-level>
	$ git add <submodule>
	$ git commit
M
Miguel de Icaza 已提交
489 490 491 492

By default, submodules are detached because they point to a specific commit.
Use `git checkout` to move back to a branch before making changes:

493 494 495 496
	$ cd <submodule>
	$ git checkout <branch>
	# work as normal; the submodule is a normal repo
	$ git commit/push new changes to the repo (submodule)
M
Miguel de Icaza 已提交
497

498
	$ cd <top-level>
499
	$ git add <submodule> # this will record the new commits to the submodule
500
	$ git commit
M
Miguel de Icaza 已提交
501 502 503 504

To switch the repo of a submodule (this should not be a common or normal thing
to do at all), first edit `.gitmodules` to point to the new location, then:

505 506 507
	$ git submodule sync -- <path of the submodule>
	$ git submodule update --recursive
	$ git checkout <desired new hash or branch>
M
Miguel de Icaza 已提交
508 509 510 511

The desired output diff is a change in `.gitmodules` to reflect the
change in the remote URL, and a change in /<submodule> where you see
the desired change in the commit hash.
512 513 514 515 516 517

License
=======

See the LICENSE file for licensing information, and the PATENTS.TXT
file for information about Microsoft's patent grant.