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
-
Halcyon Creates Anti-Ransomware Protection for Linux
As more Linux systems are targeted by ransomware, Halcyon is stepping up its protection.
-
Valve and Arch Linux Announce Collaboration
Valve and Arch have come together for two projects that will have a serious impact on the Linux distribution.
-
Hacker Successfully Runs Linux on a CPU from the Early ‘70s
From the office of "Look what I can do," Dmitry Grinberg was able to get Linux running on a processor that was created in 1971.
-
OSI and LPI Form Strategic Alliance
With a goal of strengthening Linux and open source communities, this new alliance aims to nurture the growth of more highly skilled professionals.
-
Fedora 41 Beta Available with Some Interesting Additions
If you're a Fedora fan, you'll be excited to hear the beta version of the latest release is now available for testing and includes plenty of updates.
-
AlmaLinux Unveils New Hardware Certification Process
The AlmaLinux Hardware Certification Program run by the Certification Special Interest Group (SIG) aims to ensure seamless compatibility between AlmaLinux and a wide range of hardware configurations.
-
Wind River Introduces eLxr Pro Linux Solution
eLxr Pro offers an end-to-end Linux solution backed by expert commercial support.
-
Juno Tab 3 Launches with Ubuntu 24.04
Anyone looking for a full-blown Linux tablet need look no further. Juno has released the Tab 3.
-
New KDE Slimbook Plasma Available for Preorder
Powered by an AMD Ryzen CPU, the latest KDE Slimbook laptop is powerful enough for local AI tasks.
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.