Meson — a new build system
Better Builder
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
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
SUSE Renames Several Products for Better Name Recognition
SUSE has been a very powerful player in the European market, but it knows it must branch out to gain serious traction. Will a name change do the trick?
-
ESET Discovers New Linux Malware
WolfsBane is an all-in-one malware that has hit the Linux operating system and includes a dropper, a launcher, and a backdoor.
-
New Linux Kernel Patch Allows Forcing a CPU Mitigation
Even when CPU mitigations can consume precious CPU cycles, it might not be a bad idea to allow users to enable them, even if your machine isn't vulnerable.
-
Red Hat Enterprise Linux 9.5 Released
Notify your friends, loved ones, and colleagues that the latest version of RHEL is available with plenty of enhancements.
-
Linux Sees Massive Performance Increase from a Single Line of Code
With one line of code, Intel was able to increase the performance of the Linux kernel by 4,000 percent.
-
Fedora KDE Approved as an Official Spin
If you prefer the Plasma desktop environment and the Fedora distribution, you're in luck because there's now an official spin that is listed on the same level as the Fedora Workstation edition.
-
New Steam Client Ups the Ante for Linux
The latest release from Steam has some pretty cool tricks up its sleeve.
-
Gnome OS Transitioning Toward a General-Purpose Distro
If you're looking for the perfectly vanilla take on the Gnome desktop, Gnome OS might be for you.
-
Fedora 41 Released with New Features
If you're a Fedora fan or just looking for a Linux distribution to help you migrate from Windows, Fedora 41 might be just the ticket.
-
AlmaLinux OS Kitten 10 Gives Power Users a Sneak Preview
If you're looking to kick the tires of AlmaLinux's upstream version, the developers have a purrfect solution.