Mono build scripts for Godot
Go to file
Rémi Verschelde d8956230a3
Merge pull request #18 from akien-mga/readme-versions
README: Document known good versions
2020-11-17 14:29:55 +01:00
.github CI: Address deprecation warning for set-env 2020-11-16 17:17:19 +01:00
files CI: Build with Mono 6.12.0.111 and Emscripten 1.39.9 2020-11-16 17:17:03 +01:00
__init__.py Add build scripts for WASM, AOT cross-compilers, BCL and desktop 2019-11-10 04:58:04 +01:00
.gitignore Add option to specify make build jobs (--jobs) 2020-02-24 11:05:41 +01:00
android.py Merge pull request #13 from akien-mga/android-python3-make-standalone-toolchain 2020-10-20 08:26:22 +02:00
bcl.py Use /usr/bin/env python3 shebang 2020-10-13 14:55:12 +02:00
cmd_utils.py make: Always use --jobs and support no argument (max jobs) 2020-04-06 21:13:23 +02:00
desktop.py Added Github Actions workflow 2020-05-14 22:01:26 +02:00
format.sh CI: Build with Mono 6.12.0.111 and Emscripten 1.39.9 2020-11-16 17:17:03 +01:00
ios.py CI: Build with Mono 6.12.0.111 and Emscripten 1.39.9 2020-11-16 17:17:03 +01:00
LICENSE Add README, LICENSE and Android build script 2019-07-04 18:01:26 +02:00
linux.py Use /usr/bin/env python3 shebang 2020-10-13 14:55:12 +02:00
llvm.py CI: Build with Mono 6.12.0.111 and Emscripten 1.39.9 2020-11-16 17:17:03 +01:00
options.py Merge branch 'osxcross_libpath' 2020-04-07 19:29:07 +02:00
os_utils.py offsets-tool: new location and OSXCross support 2020-04-16 15:28:28 +02:00
osx.py Use /usr/bin/env python3 shebang 2020-10-13 14:55:12 +02:00
patch_emscripten.py CI: Build with Mono 6.12.0.111 and Emscripten 1.39.9 2020-11-16 17:17:03 +01:00
patch_mono.py Use /usr/bin/env python3 shebang 2020-10-13 14:55:12 +02:00
print_env.sh Add iOS build script and fix builds with OSXCROSS 2020-03-11 01:26:05 +01:00
README.md README: Document known good versions 2020-11-17 09:34:23 +01:00
reference_assemblies.py Use /usr/bin/env python3 shebang 2020-10-13 14:55:12 +02:00
runtime.py offsets-tool: new location and OSXCross support 2020-04-16 15:28:28 +02:00
wasm.py Use /usr/bin/env python3 shebang 2020-10-13 14:55:12 +02:00
windows.py Use /usr/bin/env python3 shebang 2020-10-13 14:55:12 +02:00

Mono build scripts for Godot

Build

This repository contains scripts for building the Mono runtime to use with Godot Engine.

Supported versions

The scripts are tested against specific versions of the toolchains used by Godot. While they may work with other versions, you might have issues applying patches or compiling, so we recommend using the versions below.

  • Mono: 6.12.0.111.
  • Emscripten: 1.39.9.
  • Android: API level 29.

Command-line options

Requires Python 3.7 or higher

These scripts are based on the Mono sdks makefiles, with some changes to work well with Godot. Some platforms or targets depend on files from the sdks directory in the Mono source repository. This directory may be missing from tarballs. If that's the case, cloning the git repository may be needed. This table can be used to determine the branch for a specific version of Mono.

Some patches need to be applied to the Mono sources before building. This can be done by running python3 ./patch_mono.py.

Run python3 SCRIPT.py --help for the full list of command line options.

By default, the scripts will install the resulting files to $HOME/mono-installs. A custom output directory can be specified with the --install-dir option.

When cross-compiling to Windows, --mxe-prefix must be specified. For example, with the mingw-w64 package installed on Ubuntu, one can pass --mxe-prefix=/usr.

A path to the Mono source tree must be provided with the --mono-sources option or with the MONO_SOURCE_ROOT environment variable:

export MONO_SOURCE_ROOT=$HOME/git/mono

Notes

  • Python 3.7 or higher is required.
  • OSXCROSS is supported expect for building the Mono cross-compilers.
  • Building on Windows is not supported. It's possible to use Cygwin or WSL (Windows Subsystem for Linux) but this hasn't been tested.

Desktop

# Build the runtimes for 32-bit and 64-bit Linux.
./linux.py configure --target=x86 --target=x86_64
./linux.py make --target=x86 --target=x86_64

# Build the runtimes for 32-bit and 64-bit Windows.
./windows.py configure --target=x86 --target=x86_64 --mxe-prefix=/usr
./windows.py make --target=x86 --target=x86_64 --mxe-prefix=/usr

# Build the runtime for 64-bit macOS.
./osx.py configure --target=x86_64
./osx.py make --target=x86_64

AOT cross-compilers for desktop platforms cannot be built with these scripts yet.

Android

# These are the default values. This step can be omitted if SDK and NDK root are in this location.
export ANDROID_SDK_ROOT=$HOME/Android/Sdk
export ANDROID_NDK_ROOT=$ANDROID_SDK_ROOT/ndk-bundle

# Build the runtime for all supported Android ABIs.
./android.py configure --target=all-runtime
./android.py make --target=all-runtime

# Build the AOT cross-compilers targeting all supported Android ABIs.
./android.py configure --target=all-cross
./android.py make --target=all-cross

# Build the AOT cross-compilers for Windows targeting all supported Android ABIs.
./android.py configure --target=all-cross-win --mxe-prefix=/usr
./android.py make --target=all-cross-win --mxe-prefix=/usr

The option --target=all-runtime is a shortcut for --target=armeabi-v7a --target=x86 --target=arm64-v8a --target=x86_64. The equivalent applies for all-cross and all-cross-win.

iOS

# Build the runtime for the iPhone simulator.
./ios.py configure --target=x86_64
./ios.py make --target=x86_64

# Build the runtime for the iPhone device.
./ios.py configure --target=arm64
./ios.py make --target=arm64

# Build the AOT cross-compiler targeting the iPhone device.
./ios.py configure --target=cross-arm64
./ios.py make --target=cross-arm64

The runtime can also be built an OSXCROSS iOS toolchain. The --ios-toolchain and --ios-sdk options are the equivalent of the Godot SCons options IPHONEPATH and IPHONESDK respectively. The cross compiler cannot be built with OSXCROSS yet.

WebAssembly

Just like with Godot, an active Emscripten SDK is needed for building the Mono WebAssembly runtime.

Some patches may need to be applied to the Emscripten SDK before building Mono. This can be done by running ./patch_emscripten.py.

# Build the runtime for WebAssembly.
./wasm.py configure --target=runtime
./wasm.py make --target=runtime

AOT cross-compilers for WebAssembly cannot be built with this script yet.

Base Class library

# Build the Desktop BCL.
./bcl.py make --product=desktop

# Build the Desktop BCL for Windows.
./bcl.py make --product=desktop-win32

# Build the Android BCL.
./bcl.py make --product=android

# Build the iOS BCL.
./bcl.py make --product=ios

# Build the WebAssembly BCL.
./bcl.py make --product=wasm

NOTE: Building the Desktop BCL for the current system is required first to be able to build the Desktop BCL for Windows.

Reference Assemblies

./reference_assemblies.py install