The mono runtime and compiler project, can be a scripting engine for games and game engines #scripting #script-engine #csharp #language #programming

Marek Safar ffd377bb96 Update failing test 10 years ago
data d6bd25591b import System.Diagnostics.Trace etc. from referencesource. 11 years ago
docs 82cfc3ea31 Make the build in docs/ uses the net 4.5 profile. 11 years ago
eglib a678f96f78 [eglib] Fixed file being created without read/write permission on Windows. 10 years ago
external e58097e957 [corlib] String from reference sources, fixes mostly string.format issues 10 years ago
ikvm-native 27c58875c2 Add missing prototypes in ikvm-native. 11 years ago
libgc 41981cdca1 [libgc] Eliminate warning about redefinition of GC_WIN32_THREADS 11 years ago
m4 2e5994b2ae Use AC_PROG_MKDIR_P instead of AM_PROG_MKDIR_P in m4/ since the latter is obsoleted by automake. 12 years ago
man d84ec9f6fd Man page update 10 years ago
mcs ffd377bb96 Update failing test 10 years ago
mono 579a7b4748 [threading] Reorganize code to work with the coop backend. 10 years ago
msvc b1f0605dde [runtime] Add a new mono-config-dirs.c file which is the only one depending on the MONO_CFG_DIR etc. defines defined in metadata/Makefile.am. 10 years ago
nacl 99f40ae5bb Add NaCl build scripts 12 years ago
notes 5b7ac1ccdd Doc Doc 24 years ago
po 0ac40d8c71 Flush po/... files. 11 years ago
runtime 0bab8ed6a0 [runtime] Remove definitions of MONO_SHARED_DIR from scripts, its not needed anymore. 11 years ago
samples c1ed4a5570 Use AM_CPPFLAGS instead of INCLUDES in Makefile.am files, as the later is no longer supported, see http://lists.gnu.org/archive/html/automake/2012-08/msg00087.html. 13 years ago
scripts 73bd556820 Add scripts/mono-symbolicate to .gitignore. 10 years ago
support df23dc46c6 [runtime] Fixed complex.h usage in MS's thread pool to work in Android. 10 years ago
tools 19dc5a91a0 [sgen] Allow skipping of entries in `sgen-grep-binprot`. 10 years ago
.gitattributes 09126b1b21 Rename configure.in -> configure.ac. Based on PR #976. 11 years ago
.gitignore dc1bb8c3d0 [genproj] Ignore temporary project generation inputs. 10 years ago
.gitmodules c1bbee0b95 Remove EntityFramework from class libs 11 years ago
AUTHORS 2d20d89a31 Add Dietmar to Authors 24 years ago
CONTRIBUTING.md 184324e9cb Fixed incorrect markdown syntax for two links 11 years ago
COPYING.LIB 5fc671180e Update COPYING file with MS-PL and Apache2 texts 15 years ago
ChangeLog fab941686f Updated the build system 14 years ago
LICENSE 6cb40b05fd corrected spelling mistakes. 10 years ago
Makefile.am 158487fe94 Rename binary reference assemblies location 11 years ago
NEWS ea92cb754a Update 20 years ago
README.md 31bc329ddc Fix a typo and code indentation in readme.md 10 years ago
README.vsnet 841707826d 2006-08-31 Zoltan Varga <[email protected]> 19 years ago
acinclude.m4 0635a83c89 [build] Enable dolt on mingw32 11 years ago
appveyor.yml 588046144a appveyor.yml: switch away from unstable image and simplify script 11 years ago
autogen.sh ad8236ebb8 [runtime] Get rid of the Makefile.am.in->Makefile.am change in metadata/, its not needed. 11 years ago
build-mingw32.sh 09126b1b21 Rename configure.in -> configure.ac. Based on PR #976. 11 years ago
config.rpath fab941686f Updated the build system 14 years ago
configure.ac b614f16800 [threading] Add configure option to enable cooperative suspend. 10 years ago
mkinstalldirs f2fa465a96 Add mkinstalldirs 17 years ago
mono-core.spec.in b304ec5e0e gmcs script is no longer installed. 11 years ago
mono-uninstalled.pc.in cd8c21eb7f 19 years ago
winconfig.h 7b452e2ba9 Bump winconfig.h to 4.1.0 10 years ago

README.md

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.

  1. Compilation and Installation
  2. Using Mono
  3. Directory Roadmap
  4. Contributing to Mono
  5. Reporting bugs
  6. Configuration Options
  7. Working with Submodules

Build Status

Officially supported architectures:

debian-amd64 debian-i386 debian-armel debian-armhf windows-amd64
debian-amd64 debian-i386 debian-armel debian-armhf windows-amd64

Community supported architectures:

debian-ppc64el centos-s390x
debian-ppc64el centos-s390x

Compilation and Installation

Building the Software

Please see our guides for building Mono on Mac OS X, Linux and Windows.

Note that building from Git assumes that you already have Mono installed, so please download and install the latest Mono release 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).

If you don't have a working Mono installation

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:

# Run the following line after ./autogen.sh
make get-monolite-latest

This will download and place the files appropriately so that you can then just run:

make EXTERNAL_MCS=${PWD}/mcs/class/lib/monolite/basic.exe

The build will then use the files downloaded by make get-monolite-latest.

Testing and Installation

You can run the mono and mcs test suites with the command: make check.

Expect to find a few test suite failures. As a sanity check, you can compare the failures you got with https://wrench.mono-project.com/Wrench/ and http://jenkins.mono-project.com/.

You can now install mono with: make install

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.

Using Mono

Once you have installed the software, you can run a few programs:

  • mono program.exe runtime engine

  • mcs program.cs C# compiler

  • monodis program.exe CIL Disassembler

See the man pages for mono(1), mcs(1) and monodis(1) for further details.

Directory Roadmap

  • data/ - Configuration files installed as part of the Mono runtime.

  • docs/ - Technical documents about the Mono runtime.

  • external/ - Git submodules for external libraries (Newtonsoft.Json, ikvm, etc).

  • man/ - Manual pages for the various Mono commands and programs.

  • mcs/ - The class libraries, compiler and tools

    • class/ - The class libraries (like System.*, Microsoft.Build, etc.)

    • mcs/ - The Mono C# compiler written in C#

    • tools/ - Tools like gacutil, ikdasm, mdoc, etc.

  • mono/ - The core of the Mono Runtime.

    • arch/ - Architecture specific portions.

    • cil/ - Common Intermediate Representation, XML definition of the CIL bytecodes.

    • dis/ - CIL executable Disassembler

    • io-layer/ - The I/O layer and system abstraction for emulating the .NET IO model.

    • metadata/ - The object system and metadata reader.

    • mini/ - The Just in Time Compiler.

  • runtime/ - A directory that contains the Makefiles that link the mono/ and mcs/ build systems.

  • samples/ -Some simple sample programs on uses of the Mono runtime as an embedded library.

  • scripts/ - Scripts used to invoke Mono and the corresponding program.

  • ../olive/ - Incubation code from Olive.

    • If the directory ../olive is present (as an independent checkout) from the Mono module, that directory is automatically configured to share the same prefix than this module gets.

Contributing to Mono

Before submitting changes to Mono, please review the contribution guidelines. Please pay particular attention to the Important Rules section.

Reporting bugs

To submit bug reports, please use Xamarin's Bugzilla

Please use the search facility to ensure the same bug hasn't already been submitted and follow our guidelines on how to make a good bug report.

Configuration Options

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=[included, boehm, none] - Selects the default Boehm garbage collector engine to use.

    • included: (slighty modified Boehm GC) This is the default value for the Boehm GC, and it's the most feature complete, it will allow Mono to use typed allocations and support the debugger.

    • 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.

    • none: Disables the inclusion of a garbage collector.

    • This defaults to included.

  • --with-tls=__thread,pthread

    • Controls how Mono should access thread local storage, pthread forces Mono to use the pthread APIs, while __thread uses compiler-optimized access to it.

    • Although __thread is faster, it requires support from the compiler, kernel and libc. Old Linux systems do not support with __thread.

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

  • --with-sigaltstack=yes,no

    • Experimental: Use at your own risk, it is known to cause problems with garbage collection and is hard to reproduce those bugs.

    • 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.

    • 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.

  • --with-static_mono=yes,no

    • This controls whether mono should link against a static library (libmono.a) or a shared library (libmono.so).

    • This defaults to yes, and will improve the performance of the mono program.

    • 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.

  • --with-xen-opt=yes,no - Optimize code for Xen virtualization.

    • 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.

    • This defaults to yes.

  • --with-large-heap=yes,no - Enable support for GC heaps larger than 3GB.

    • This defaults to no.
  • --enable-small-config=yes,no - Enable some tweaks to reduce memory usage and disk footprint at the expense of some capabilities.

    • 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).

    • This defaults to no.

  • --with-ikvm-native=yes,no - Controls whether the IKVM JNI interface library is built or not.

    • This is used if you are planning on using the IKVM Java Virtual machine with Mono.

    • This defaults to yes.

  • --with-profile4=yes,no - Whether you want to build the 4.x profile libraries and runtime.

    • This defaults to yes.
  • --with-libgdiplus=installed,sibling,<path> - Configure where Mono searches for libgdiplus when running System.Drawing tests.

    • It defaults to installed, which means that the library is available to Mono through the regular system setup.

    • sibling can be used to specify that a libgdiplus that resides as a sibling of this directory (mono) should be used.

    • Or you can specify a path to a libgdiplus.

  • --disable-shared-memory

    • 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).

    • Disabling the shared memory support will disable certain features like cross-process named mutexes.

  • --enable-minimal=LIST

    • 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:

    • aot: Disables support for the Ahead of Time compilation.

    • attach: Support for the Mono.Management assembly and the VMAttach API (allowing code to be injected into a target VM)

    • com: Disables COM support.

    • debug: Drop debugging support.

    • decimal: Disables support for System.Decimal.

    • 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.

    • generics: Generics support. Disabling this will not allow Mono to run any 2.0 libraries or code that contains generics.

    • 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.

    • large_code: Disables support for large assemblies.

    • logging: Disables support for debug logging.

    • pinvoke: Support for Platform Invocation services, disabling this will drop support for any libraries using DllImport.

    • 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.

    • profiler: Disables support for the default profiler.

    • reflection_emit: Drop System.Reflection.Emit support

    • reflection_emit_save: Drop support for saving dynamically created assemblies (AssemblyBuilderAccess.Save) in System.Reflection.Emit.

    • shadow_copy: Disables support for AppDomain's shadow copies (you can disable this if you do not plan on using appdomains).

    • simd: Disables support for the Mono.SIMD intrinsics library.

    • ssa: Disables compilation for the SSA optimization framework, and the various SSA-based optimizations.

  • --enable-llvm

  • --enable-loadedllvm

    • 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.

    • See http://www.mono-project.com/docs/advanced/mono-llvm/ for the full details and up-to-date information on this feature.

    • You will need to have an LLVM built that Mono can link against.

    • The --enable-loadedllvm variant will make the LLVM backend into a runtime-loadable module instead of linking it directly into the main mono binary.

  • --enable-big-arrays - Enable use of arrays with indexes larger than Int32.MaxValue.

    • 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).

    • In certain scenarios where large arrays are required, you can pass this flag and Mono will be built to support 64-bit arrays.

    • This is not the default as it breaks the C embedding ABI that we have exposed through the Mono development cycle.

  • --enable-parallel-mark

    • 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.

    • This option is not currently the default as we have not done much testing with Mono.

  • --enable-dtrace

    • 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.
  • --disable-dev-random

    • 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.

    • There are a number of runtime options to control this also, see the man page.

  • --enable-nacl

    • This configures the Mono compiler to generate code suitable to be used by Google's Native Client: http://code.google.com/p/nativeclient/

    • Currently this is used with Mono's AOT engine as Native Client does not support JIT engines yet.

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:

$ git clone --recursive [email protected]:mono/mono

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

$ git submodule update --init --recursive

To pull external changes into a submodule:

$ cd <submodule>
$ git pull origin <branch>
$ cd <top-level>
$ git add <submodule>
$ git commit

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

$ cd <submodule>
$ git checkout <branch>
# work as normal; the submodule is a normal repo
$ git commit/push new changes to the repo (submodule)

$ cd <top-level>
$ git add <submodule> # this will record the new commits to xamcore
$ git commit

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:

$ git submodule sync -- <path of the submodule>
$ git submodule update --recursive
$ git checkout <desired new hash or branch>

The desired output diff is a change in .gitmodules to reflect the change in the remote URL, and a change in / where you see the desired change in the commit hash.