Meson (software)
Developer(s) | Jussi Pakkanen |
---|---|
Initial release | March 2, 2013 |
Stable release | 0.45.1[1]
/ March 22, 2018 |
Repository | |
Written in | Python |
Operating system | Cross-platform |
Type | Software development tools |
License | Apache 2.0 License |
Website | mesonbuild |
Meson (/ˈmɛ.sɒn/[2]) is a software tool for automating the building (compiling) of software. The overall goal for Meson is to promote programmer productivity.[3]
Meson is free and open-source software written in Python 3 and subject to the terms of the Apache 2.0 License.[4]
Interoperability
Being written in Python, Meson runs natively on Unix-like operating systems, including macOS, as well as Microsoft Windows and on other operating systems.
Meson supports the C, C++, D, Fortran, Java, Rust and Vala languages,[5] and has a mechanism for handling dependencies called Wrap.
Meson supports GNU Compiler Collection, Clang, Microsoft Visual Studio and others.
Usage
Meson is like CMake in that it does not build software directly, but rather sets up a backend build system such as ninja on Linux, MSBuild on Windows or Xcode on macOS. The user then invokes the backend buildsystem. Because only out-of-tree builds are supported, like in CMake, it requires the user to create a build directory for this backend buildsystem and its outputs. The basic usage difference is that CMake defaults to make as a backend instead of ninja, but cmake -G Ninja behaves like Meson in this regard.
Language
The syntax of Meson's build description files (the Meson language) borrows from Python, but is not Python: It is designed to be reimplementable in any other language[6] – the dependency on Python is an implementation detail.
The Meson language is intentionally not turing complete, and can therefore not express an arbitrary program.[6] Instead, arbitrary build steps beyond compiling supported languages can be represented as custom targets.
The Meson language is strongly typed, such that builtin types like library, executable, string, and lists thereof, are non-interchangeable.[7] In particular, unlike Make, the list type does not split strings on whitespace.[6] Thus, whitespace and other characters in filenames and program arguments are handled cleanly.
Like Ninja, Meson does not support globbing of source files.[6] By requiring all source files to be listed in the build definition files, the build definition file timestamps are sufficient to determine if the set of source files have changed, thereby ensuring that removed source files are detected. CMake supports globbing, but recommends against it for the same reason.[8]
Meson | CMake | Make | |
---|---|---|---|
Datatypes | Yes | No | No |
List datatype | Yes | semicolon delimited string | whitespace delimited string |
File globbing | No | Yes | Yes |
Extensible via custom functions | No | Yes | Yes |
Can read output of arbitrary commands (at configure time) | run_command | Yes | Yes |
Can run arbitrary commands at build time as recipes of custom targets | Yes | Yes | Yes |
Features
To speed up incremental compilation, Meson uses ccache automatically if installed. It also detects changes to symbol tables of shared libraries to skip relinking executables against the library when there are no ABI changes. Precompiled headers are supported, but requires configuration. Debug builds are without optimization by default.
As a matter of correctness, changes to build definitions are detected and automatically triggers a rerun of Meson. The user is never supposed to have to rerun Meson manually. This differs from Make, which does not detect changes to build definitions or environment variables that affect the build (unless programmed to do so) – a common pitfall with Make is changing the compiler flags.
A stated goal of Meson is to facilitate modern development practices. As such, Meson knows how to do unity builds, build with test coverage, link time optimization etc without the programmer having to write support for this.
Meson | CMake | Make | |
---|---|---|---|
Ccache | Automatic | Trivial to add | Trivial to add |
Distcc | ? | Trivial to add | Trivial to add |
Symbol table aware relinking | Yes | Do it yourself | Do it yourself |
Precompiled headers | Optional | Broken solutions exist[9][2] | Do it yourself |
Prohibits stale builds (partial rebuild against input change) | Yes (unless there are bugs) | If not globbing source files | Subject to many constraints |
Subprojects
Like CMake,CMake package Meson primarily uses pkg-config to find dependencies that are external to the project. This is not a solution to dependency hell, as the job of satisfying missing dependencies is on the user. Alternatively, the dependency can be internalized as a subproject – a Meson project within another – either contained or as a link.[10] This has the drawback of contributing to software bloat in the case of common dependencies. The compromise favored by Linux packagers is to use the subproject as a fallback for the external dependency.[11]
A problem is that Meson only supports Meson subprojects. For common dependencies, this is solved by patching in a Meson build file from the WrapDB service.[10]
- Comparison of dependency resolution use cases in different build systems
use case | Meson | CMake | Cargo |
---|---|---|---|
Finding installed dependencies | pkg-config | CMake module, pkg-config | ? |
Downloading dependencies automatically | subproject | No | Cargo dependency |
Finding installed dependencies, with download fallback | pkg-config + subproject | No | ? |
pkg-config file generator | Yes | No | No |
Facilitate use as an auto-downloadable dependency | Can be used as a Meson subproject | No | With registration to crates.io |
- Notes
- ^CMake package CMake can use either CMake packages or pkg-config, but as the table shows, both are for finding installed dependencies.
Cross compilation
Cross compilation requires extra configuration, which Meson supports in the form of a separate cross file, which can be external to the Meson project.[12]
Adopters
GNOME has made it a goal to port its projects to Meson.[13] As of late 2017, GNOME Shell itself exclusively requires Meson after abandoning Autotools,[14] and central components like GTK+, Clutter-GTK, GLib and GStreamer can be built with Meson.[13]
Systemd relies on Meson since dropping Autotools in version 234.[15]
Efforts are made to port Xorg[16] and Mesa[17] to Meson.
The Meson homepage lists further projects using Meson.[18]
See also
References
- ^ "Releases - mesonbuild/meson". Retrieved 20 July 2017 – via GitHub.
- ^ a b "Making build systems not suck (linux.conf.au video)".
- ^ "High productivity build system".
Meson aims to optimize programmer productivity by providing simple, out-of-the-box support for modern software development tools and practices, such as unit tests, coverage reports, Valgrind, CCache and the like.
- ^ "mesonbuild/meson: The Meson Build System". GitHub. Retrieved 13 April 2016.
- ^ "Reference manual".
- ^ a b c d "Meson Frequently Asked Questions".
- ^ "Meson Syntax".
- ^ "CMake FILE command".
Note: We do not recommend using GLOB to collect a list of source files from your source tree. If no CMakeLists.txt file changes when a source is added or removed, the generated build system cannot know when to ask CMake to regenerate.
- ^ "CMake support for precompiled headers". Retrieved 13 March 2018.
- ^ a b "Wrap dependency system manual".
- ^ "Meson and 3rd party dependencies. Only one correct way".
- ^ "Cross compilation".
- ^ a b "GNOME Goal: Port modules to use Meson build system".
- ^ "GNOME 3.26 Beta Debuts: More Meson Porting, Wayland Action".
- ^ "Drop support for autotools".
- ^ "The Meson Build System Is Being Fitted For The X.Org Server".
- ^ "Meson-ized Mesa Now Supports More Drivers".
- ^ "List of projects using Meson".