Meson — a new build system
Better Builder

© Lead Image © tommroch, 123RF.com
Developers fed up with cryptic Makefiles should take a look at the new Meson build system, which is simple to operate, offers scripting capabilities, integrates external test tools, and supports Linux, Windows, and Mac OS X.
Finnish developer Jussi Pakkanen was frustrated by existing build systems with foolish syntax in configuration files and unexpected behavior [1]. During the Christmas season of 2012, he therefore decided to develop his own build system that would run fast, be reliable and easy to use, run on all major operating systems, and integrate important test tools like Valgrind.Just two months later, Pakkanen published a first version of his build system, which, as a trained physicist, he named for the Meson particle. Since then, the technology has advanced quickly. Version 0.17.0 – the latest version when this article was written – is already extremely stable despite its low version number and contains all the features planned by the program author.
Meson builds executables and libraries and supports multiple directories for different builds from the same source. The flexible configuration language is easy to learn, opens many possibilities to the developer, and supports if
statements.
Presentable Features
Meson is written entirely in Python 3 and is released under Apache License 2.0. One minor drawback, however, is that, currently, Meson can only handle source code in the programming languages, C, C++, Java, and Vala. Meson does not bundle the source code into the appropriate compiler itself; rather, it simply generates configuration files for an existing build system. Under Linux, Meson generates build files for the relatively unknown but quite nimble Ninja [2] mini-build system. Alternatively, Meson outputs project files for Visual Studio 2010 or Xcode. Meson refers to all of these external tools as back ends.
If you would like to use the build system on Linux, you therefore need to install Ninja 3 and Python via the package manager. On Ubuntu, this means typing,
sudo apt-get install python3 ninja-build
then downloading the current Meson version from SourceForge [3] and extracting the archive.
The installation is handled by the install_meson
script, which you launch as the root user. By default, it copies the build tool into subdirectories below /usr/local/
. However, the --prefix <path>
parameter lets you choose a different target.
Rather than install Meson, users can call it directly from any directory. The short meson
command then always needs to be replaced by <path>/meson.py
.
Building Plan
The next thing you need to do is create a small configuration file named meson.build
in the directory with your self-written source code. An example of such a file is given in Listing 1. Meson uses its own programming language within the meson.build
file; it should look familiar to Python programmers. Meson somewhat inconsistently refers to the project()
and executable()
functions as commands. Each statement must be on a separate line.
Listing 1
Example meson.build File
Starting a Project
A new project is defined by the project()
keyword; it expects two arguments: the project name and the programming language used. In Listing 1, the project is called Hello World
; its source code is in the C programming language. Armed with this knowledge, Meson can automatically select the correct compiler. C++ programmers would use cpp
as the second parameter. Strings need to be framed in single quotes, and a #
introduces a comment; Meson ignores everything that follows a hash mark until a newline occurs.
The second line in Listing 1 defines a new variable named src
. This in turn expects an array with the names of the translatable source code files. The square brackets create the array here. In addition to arrays, variables will also accept integers (num = 123
), logical values (right = true
), and strings ( name = 'Peter'
).
You do not need to specify these values explicitly (dynamic typing); however, they cannot be converted from one type to another. Finally, the developer must always define a build target in meson.build
. It determines whether Meson should output a library, a program, or both.
In Listing 1, the executable()
function ensures that the compiler generates a program. As arguments it receives the program name and the list of compilable files.
The executable()
function also supports putting the name of the corresponding parameter before each argument to increase readability. In Listing 1, this happened in sources : src
. This concept is familiar from other languages as keyword arguments or named parameters.
Two other build targets besides execute()
are static_library()
and shared_library()
, which generate a static or dynamic link library, respectively. The following call builds version 1.2.3 of a dynamic library named libhello
from the files lib1.c
and lib2.c
:
shared_library('hello', ['lib1.c', 'lib2.c'],version : '1.2.3')
The version number is optional. The static_library()
function is called in the same way, but you cannot specify the version number. Developers can specify several different build targets simultaneously; Meson then creates them automatically in sequence.
The three lines from Listing 1 are everything Meson needs. The tool itself selects the matching compiler, including the necessary parameters.
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
News
-
An All-Snap Version of Ubuntu is In The Works
Along with the standard deb version of the open-source operating system, Canonical will release an-all snap version.
-
Mageia 9 Beta 2 Ready for Testing
The latest beta of the popular Mageia distribution now includes the latest kernel and plenty of updated applications.
-
KDE Plasma 6 Looks to Bring Basic HDR Support
The KWin piece of KDE Plasma now has HDR support and color management geared for the 6.0 release.
-
Bodhi Linux 7.0 Beta Ready for Testing
The latest iteration of the Bohdi Linux distribution is now available for those who want to experience what's in store and for testing purposes.
-
Changes Coming to Ubuntu PPA Usage
The way you manage Personal Package Archives will be changing with the release of Ubuntu 23.10.
-
AlmaLinux 9.2 Now Available for Download
AlmaLinux has been released and provides a free alternative to upstream Red Hat Enterprise Linux.
-
An Immutable Version of Fedora Is Under Consideration
For anyone who's a fan of using immutable versions of Linux, the Fedora team is currently considering adding a new spin called Fedora Onyx.
-
New Release of Br OS Includes ChatGPT Integration
Br OS 23.04 is now available and is geared specifically toward web content creation.
-
Command-Line Only Peropesis 2.1 Available Now
The latest iteration of Peropesis has been released with plenty of updates and introduces new software development tools.
-
TUXEDO Computers Announces InfinityBook Pro 14
With the new generation of their popular InfinityBook Pro 14, TUXEDO upgrades its ultra-mobile, powerful business laptop with some impressive specs.