2020-06-12 20:09:42 +02:00
Compilation and Installation Using Meson
========================================
1. Introduction
---------------
For general information about Meson see the `Meson
website <https://mesonbuild.com/>`__.
2019-12-05 20:39:17 +00:00
.. note ::
2023-02-23 10:47:03 +00:00
Mesa requires Meson >= 0.60.0 to build.
2019-12-05 20:39:17 +00:00
If your distribution doesn't have something recent enough in its
repositories, you can `try the methods suggested here
<https://mesonbuild.com/Getting-meson.html>`__ to install the
current version of Meson.
2020-06-12 20:09:42 +02:00
The Meson build of Mesa is tested on Linux, macOS, Windows, Cygwin,
Haiku, FreeBSD, DragonflyBSD, NetBSD, and should work on OpenBSD.
Unix-like OSes
^^^^^^^^^^^^^^
If Meson is not already installed on your system, you can typically
install it with your package installer. For example:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
sudo apt-get install meson # Ubuntu
or
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
sudo dnf install meson # Fedora
2020-09-29 18:20:24 +02:00
Some older versions of Meson do not check that they are too old and will
2020-06-12 20:09:42 +02:00
error out in odd ways.
You'll also need `Ninja <https://ninja-build.org/> `__ . If it's not
already installed, use apt-get or dnf to install the *ninja-build*
package.
2024-07-22 16:08:44 +05:30
Dependencies
++++++++++++
Following are the dependencies you would need to install on linux to build and install mesa main. You can install these packages using your linux distibutions' package manager.
.. note ::
All these dependencies are for latest linux distros and is tested on ubuntu-24 only for now.
Also note, some packages below might not be available in your OS with the exact name, in such case you can search for it and install the distribution specific one.
For some packages (eg: libclc etc), you will need the full content of the packages, so make sure to also install `` -dev `` /`` -devel `` /`` -headers `` /etc. packages (if available) on distributions that split the files into multiple packages.
1. glslang-tools
2. python3-pyyaml
3. python3-mako
4. libdrm (This will get libdrm for intel, amd, qualcomm, nvidia, etc. If you are building a specific driver out of these, you can install only that specific libdrm)
5. libclc-<version>
6. llvm-<version>
7. libllvmspirvlib-<version>
8. libclang-<version>
9. byacc (or) bison
10. flex
.. note ::
You should make sure that all the llvm related packages (libclc, libclc-dev, llvm, libllvmspirvlib, libclang) are of the same version. You can go with the latest version available on your OS if you are not aware of which version to select.
wayland specific:
1. libwayland
2. libwayland-egl-backend
x11 specific:
1. libx11
2. libxext
3. libxfixes
4. libxcb-glx
5. libxcb-shm
6. libx11-xcb
7. libxcb-dri2
8. libxcb-dri3
9. libxcb-present
10. libxshmfence
11. libxxf86vm
12. libxrandr
for intel vulkan ray-tracing:
1. python3-ply
radeon specific:
1. libelf
nouveau/rusticl specific:
1. rustc
2. rustfmt
3. bindgen
4. cbindgen
2020-06-12 20:09:42 +02:00
Windows
^^^^^^^
2020-09-29 18:22:55 +02:00
You will need to install Python 3 and Meson as a module using pip. This
is because we use Python for generating code, and rely on external
2020-09-29 18:27:03 +02:00
modules (Mako). You also need pkg-config (a hard dependency of Meson),
2020-09-29 18:26:25 +02:00
Flex, and Bison. The easiest way to install everything you need is with
2020-09-29 18:28:16 +02:00
`Chocolatey <https://chocolatey.org/> `__ .
2020-06-12 20:09:42 +02:00
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
choco install python3 winflexbison pkgconfiglite
2020-09-29 18:30:44 +02:00
You can even use Chocolatey to install MinGW and Ninja (Ninja can be
2020-06-12 20:09:42 +02:00
used with MSVC as well)
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
choco install ninja mingw
2020-09-29 18:20:24 +02:00
Then install Meson using pip
2020-06-12 20:09:42 +02:00
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
2024-01-02 17:21:10 +00:00
py -3 -m pip install meson packaging mako
2020-06-12 20:09:42 +02:00
2020-09-29 18:22:55 +02:00
You may need to add the Python 3 scripts directory to your path for
2020-09-29 18:20:24 +02:00
Meson.
2020-06-12 20:09:42 +02:00
2. Basic Usage
--------------
2020-09-29 18:20:24 +02:00
The Meson program is used to configure the source directory and
2020-09-29 18:29:50 +02:00
generates either a Ninja build file or Visual Studio® build files. The
latter must be enabled via the `` --backend `` switch, as Ninja is the
2020-06-12 20:09:42 +02:00
default backend on all operating systems.
Meson only supports out-of-tree builds, and must be passed a directory
to put built and generated sources into. We'll call that directory
"build" here. It's recommended to create a `separate build
directory <https://mesonbuild.com/Using-multiple-build-directories.html>`__
for each configuration you might want to use.
Basic configuration is done with:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
2023-02-22 15:43:57 +00:00
meson setup build/
2020-06-12 20:09:42 +02:00
This will create the build directory. If any dependencies are missing,
you can install them, or try to remove the dependency with a Meson
2023-02-22 15:59:48 +00:00
configuration option (see below). Meson will print a summary of the
build options at the end.
2020-06-12 20:09:42 +02:00
To review the options which Meson chose, run:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
meson configure build/
2023-02-22 16:00:35 +00:00
Recent version of Meson can print the available options and their
default values by running `` meson configure `` in the source directory.
If your Meson version is too old, you can always look in the
2021-04-26 13:51:33 -07:00
`meson_options.txt <https://gitlab.freedesktop.org/mesa/mesa/-/blob/main/meson_options.txt> `__
2020-06-12 20:09:42 +02:00
file at the root of the project.
With additional arguments `` meson configure `` can be used to change
options for a previously configured build directory. All options passed
to this command are in the form `` -D "option"="value" `` . For example:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
meson configure build/ -Dprefix=/tmp/install -Dglx=true
Note that options taking lists (such as `` platforms `` ) are `a bit more
complicated <https://mesonbuild.com/Build-options.html#using-build-options>`__,
but the simplest form compatible with Mesa options is to use a comma to
separate values (`` -D platforms=drm,wayland `` ) and brackets to represent
an empty list (`` -D platforms=[] `` ).
Once you've run the initial `` meson `` command successfully you can use
your configured backend to build the project in your build directory:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
ninja -C build/
The next step is to install the Mesa libraries, drivers, etc. This also
finishes up some final steps of the build process (such as creating
symbolic links for drivers). To install:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
ninja -C build/ install
2024-07-22 16:08:44 +05:30
After installation, you can check if the installation happened properly or not by running the command:
.. code-block :: sh
2024-07-29 11:26:43 +02:00
2024-07-22 16:08:44 +05:30
glxinfo | grep OpenGL
If the installation succeeded, you should see the Mesa devel version and also the commit hash of the latest commit.
In case you don't see the devel version, you can run
.. code-block :: sh
2024-07-29 11:26:43 +02:00
2024-07-22 16:08:44 +05:30
sudo ldconfig
2020-06-12 20:09:42 +02:00
Windows specific instructions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2020-09-29 18:37:11 +02:00
On Windows you have a couple of choices for compilers. If you installed
2020-09-29 18:30:44 +02:00
MinGW with Chocolatey and want to use Ninja you should be able to open
2020-06-12 20:09:42 +02:00
any shell and follow the instructions above. If you want to you MSVC,
clang-cl, or ICL (the Intel Compiler), read on.
Both ICL and MSVC come with shell environments, the easiest way to use
2020-09-29 18:20:24 +02:00
Meson with these it to open a shell. For clang-cl you will need to open
2020-06-12 20:09:42 +02:00
an MSVC shell, and then override the compilers, either using a `native
file <https://mesonbuild.com/Native-environments.html>`__, or with the
CC and CXX environment variables.
2020-09-29 18:29:50 +02:00
All of these compilers are tested and work with Ninja, but if you want
2020-09-29 18:38:30 +02:00
Visual Studio integration or you just like msbuild, passing
2021-06-18 13:32:27 +02:00
`` --backend=vs `` to Meson will generate a Visual Studio solution.
2020-06-12 20:09:42 +02:00
3. Advanced Usage
-----------------
Installation Location
2020-04-18 12:38:05 +02:00
^^^^^^^^^^^^^^^^^^^^^
2020-06-12 20:09:42 +02:00
2021-06-18 13:38:31 +02:00
Meson default to installing :file: `libGL.so` in your system's main
:file: `lib/` directory and DRI drivers to a :file: `dri/` subdirectory.
2020-06-12 20:09:42 +02:00
Developers will often want to install Mesa to a testing directory rather
than the system library directory. This can be done with the --prefix
option. For example:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
meson --prefix="${PWD}/build/install" build/
will put the final libraries and drivers into the build/install/
2024-07-31 23:37:07 -04:00
directory. Then you can set LD_LIBRARY_PATH to that location to run/test
the driver.
2020-06-12 20:09:42 +02:00
Meson also honors `` DESTDIR `` for installs.
Compiler Options
2020-04-18 12:38:05 +02:00
^^^^^^^^^^^^^^^^
2020-06-12 20:09:42 +02:00
Meson supports the common CFLAGS, CXXFLAGS, etc. environment variables
but their use is discouraged because of the many caveats in using them.
2020-07-09 00:52:27 +02:00
Instead, it is recommended to use `` -D${lang}_args `` and
2020-06-12 20:09:42 +02:00
`` -D${lang}_link_args `` . Among the benefits of these options is that
they are guaranteed to persist across rebuilds and reconfigurations.
This example sets -fmax-errors for compiling C sources and -DMAGIC=123
for C++ sources:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
2023-02-22 15:43:57 +00:00
meson setup builddir/ -Dc_args=-fmax-errors=10 -Dcpp_args=-DMAGIC=123
2020-06-12 20:09:42 +02:00
Compiler Specification
2020-04-18 12:38:05 +02:00
^^^^^^^^^^^^^^^^^^^^^^
2020-06-12 20:09:42 +02:00
Meson supports the standard CC and CXX environment variables for
changing the default compiler. Note that Meson does not allow changing
2022-10-19 11:58:05 +02:00
the compilers in a configured build directory so you will need to create
a new build dir for a different compiler.
2020-06-12 20:09:42 +02:00
2020-09-30 15:09:37 +02:00
This is an example of specifying the Clang compilers and cleaning the
2020-06-12 20:09:42 +02:00
build directory before reconfiguring with an extra C option:
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
2023-02-22 15:43:57 +00:00
CC=clang CXX=clang++ meson setup build-clang
2020-06-12 20:09:42 +02:00
ninja -C build-clang
ninja -C build-clang clean
meson configure build -Dc_args="-Wno-typedef-redefinition"
ninja -C build-clang
The default compilers depends on your operating system. Meson supports
most of the popular compilers, a complete list is available
`here <https://mesonbuild.com/Reference-tables.html#compiler-ids> `__ .
LLVM
2020-04-18 12:38:05 +02:00
^^^^
2020-06-12 20:09:42 +02:00
Meson includes upstream logic to wrap llvm-config using its standard
dependency interface.
2021-06-18 13:35:31 +02:00
Meson can use CMake to find LLVM. But due to the way LLVM implements its
CMake finder it will only find static libraries, it will never find
2021-06-18 13:38:31 +02:00
:file: `libllvm.so` . There is also a `` -Dcmake_module_path `` option,
which points to the root of an alternative installation (the prefix).
For example:
2020-06-12 20:09:42 +02:00
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
2023-02-22 15:43:57 +00:00
meson setup builddir -Dcmake_module_path=/home/user/mycmake/prefix
2020-06-12 20:09:42 +02:00
2020-09-29 18:20:24 +02:00
As of Meson 0.49.0 Meson also has the concept of a `"native
2020-06-12 20:09:42 +02:00
file" <https://mesonbuild.com/Native-environments.html>`__, these files
provide information about the native build environment (as opposed to a
2022-10-24 15:06:01 +02:00
cross build environment). They are INI formatted and can override where
2020-06-12 20:09:42 +02:00
to find llvm-config:
2021-04-15 15:47:08 +02:00
.. code-block :: ini
2021-06-18 16:34:42 +02:00
:caption: custom-llvm.ini
2020-06-12 20:09:42 +02:00
[binaries]
llvm-config = '/usr/local/bin/llvm/llvm-config'
2020-09-29 18:20:24 +02:00
Then configure Meson:
2020-06-12 20:09:42 +02:00
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
2023-02-22 15:43:57 +00:00
meson setup builddir/ --native-file custom-llvm.ini
2020-06-12 20:09:42 +02:00
For selecting llvm-config for cross compiling a `"cross
file" <https://mesonbuild.com/Cross-compilation.html#defining-the-environment>`__
should be used. It uses the same format as the native file above:
2021-04-15 15:47:08 +02:00
.. code-block :: ini
2021-06-18 16:34:42 +02:00
:caption: cross-llvm.ini
2020-06-12 20:09:42 +02:00
[binaries]
...
llvm-config = '/usr/lib/llvm-config-32'
cmake = '/usr/bin/cmake-for-my-arch'
2022-10-18 15:59:33 +02:00
Obviously, only CMake or llvm-config is required.
2020-06-12 20:09:42 +02:00
2020-09-29 18:20:24 +02:00
Then configure Meson:
2020-06-12 20:09:42 +02:00
2024-01-11 11:16:00 +00:00
.. code-block :: sh
2020-06-12 20:09:42 +02:00
2023-02-22 15:43:57 +00:00
meson setup builddir/ --cross-file cross-llvm.ini
2020-06-12 20:09:42 +02:00
2020-06-27 10:00:10 +02:00
See the :ref: `Cross Compilation <cross-compilation>` section for more
2020-06-12 20:09:42 +02:00
information.
2020-09-29 18:44:21 +02:00
On Windows (and in other cases), using llvm-config or CMake may be
2020-06-12 20:09:42 +02:00
either undesirable or impossible. Meson's solution for this is a
`wrap <https://mesonbuild.com/Wrap-dependency-system-manual.html> `__ , in
this case a "binary wrap". Follow the steps below:
- Install the binaries and headers into the
`` $mesa_src/subprojects/llvm ``
2021-06-18 13:38:31 +02:00
- Add a :file: `meson.build` file to that directory (more on that later)
2020-06-12 20:09:42 +02:00
The wrap file must define the following:
- `` dep_llvm `` : a `` declare_dependency() `` object with
include_directories, dependencies, and version set)
It may also define:
- `` irbuilder_h `` : a `` files() `` object pointing to llvm/IR/IRBuilder.h
- `` has_rtti `` : a `` bool `` that declares whether LLVM was built with
RTTI. Defaults to true
2021-06-18 13:38:31 +02:00
such a :file: `meson.build` file might look like:
2020-06-12 20:09:42 +02:00
::
project('llvm', ['cpp'])
cpp = meson.get_compiler('cpp')
_deps = []
_search = join_paths(meson.current_source_dir(), 'lib')
foreach d : ['libLLVMCodeGen', 'libLLVMScalarOpts', 'libLLVMAnalysis',
'libLLVMTransformUtils', 'libLLVMCore', 'libLLVMX86CodeGen',
'libLLVMSelectionDAG', 'libLLVMipo', 'libLLVMAsmPrinter',
'libLLVMInstCombine', 'libLLVMInstrumentation', 'libLLVMMC',
'libLLVMGlobalISel', 'libLLVMObjectYAML', 'libLLVMDebugInfoPDB',
'libLLVMVectorize', 'libLLVMPasses', 'libLLVMSupport',
'libLLVMLTO', 'libLLVMObject', 'libLLVMDebugInfoCodeView',
'libLLVMDebugInfoDWARF', 'libLLVMOrcJIT', 'libLLVMProfileData',
'libLLVMObjCARCOpts', 'libLLVMBitReader', 'libLLVMCoroutines',
'libLLVMBitWriter', 'libLLVMRuntimeDyld', 'libLLVMMIRParser',
'libLLVMX86Desc', 'libLLVMAsmParser', 'libLLVMTableGen',
'libLLVMFuzzMutate', 'libLLVMLinker', 'libLLVMMCParser',
'libLLVMExecutionEngine', 'libLLVMCoverage', 'libLLVMInterpreter',
'libLLVMTarget', 'libLLVMX86AsmParser', 'libLLVMSymbolize',
'libLLVMDebugInfoMSF', 'libLLVMMCJIT', 'libLLVMXRay',
'libLLVMX86AsmPrinter', 'libLLVMX86Disassembler',
'libLLVMMCDisassembler', 'libLLVMOption', 'libLLVMIRReader',
'libLLVMLibDriver', 'libLLVMDlltoolDriver', 'libLLVMDemangle',
'libLLVMBinaryFormat', 'libLLVMLineEditor',
'libLLVMWindowsManifest', 'libLLVMX86Info', 'libLLVMX86Utils']
_deps += cpp.find_library(d, dirs : _search)
endforeach
dep_llvm = declare_dependency(
include_directories : include_directories('include'),
dependencies : _deps,
version : '6.0.0',
)
has_rtti = false
irbuilder_h = files('include/llvm/IR/IRBuilder.h')
It is very important that version is defined and is accurate, if it is
not, workarounds for the wrong version of LLVM might be used resulting
in build failures.
`` PKG_CONFIG_PATH ``
2020-04-18 12:38:05 +02:00
^^^^^^^^^^^^^^^^^^^
2020-06-12 20:09:42 +02:00
The `` pkg-config `` utility is a hard requirement for configuring and
building Mesa on Unix-like systems. It is used to search for external
libraries on the system. This environment variable is used to control
the search path for `` pkg-config `` . For instance, setting
`` PKG_CONFIG_PATH=/usr/X11R6/lib/pkgconfig `` will search for package
metadata in `` /usr/X11R6 `` before the standard directories.
Options
2020-04-18 12:38:05 +02:00
^^^^^^^
2020-06-12 20:09:42 +02:00
2020-09-29 18:20:24 +02:00
One of the oddities of Meson is that some options are different when
2022-11-14 11:18:40 +01:00
passed to :program: `meson` than to `` meson configure `` . These options are
passed as --option=foo to :program: `meson` , but -Doption=foo to
2020-06-12 20:09:42 +02:00
`` meson configure `` . Mesa defined options are always passed as
-Doption=foo.
2022-10-19 13:04:11 +02:00
For those coming from Autotools be aware of the following:
2020-06-12 20:09:42 +02:00
`` --buildtype/-Dbuildtype ``
2020-10-28 11:53:30 +01:00
This option will set the compiler debug/optimization levels to aid
2020-06-12 20:09:42 +02:00
debugging the Mesa libraries.
2020-09-29 18:20:24 +02:00
Note that in Meson this defaults to `` debugoptimized `` , and not
2020-06-12 20:09:42 +02:00
setting it to `` release `` will yield non-optimal performance and
binary size. Not using `` debug `` may interfere with debugging as some
code and validation will be optimized away.
For those wishing to pass their own optimization flags, use the
2020-09-29 18:20:24 +02:00
`` plain `` buildtype, which causes Meson to inject no additional
2020-06-12 20:09:42 +02:00
compiler arguments, only those in the C/CXXFLAGS and those that mesa
itself defines.
`` -Db_ndebug ``
2020-09-29 18:20:24 +02:00
This option controls assertions in Meson projects. When set to
2020-06-12 20:09:42 +02:00
`` false `` (the default) assertions are enabled, when set to true they
are disabled. This is unrelated to the `` buildtype `` ; setting the
latter to `` release `` will not turn off assertions.
2020-06-27 09:48:48 +02:00
.. _cross-compilation:
2020-06-12 20:09:42 +02:00
4. Cross-compilation and 32-bit builds
--------------------------------------
`Meson supports
cross-compilation <https://mesonbuild.com/Cross-compilation.html>`__ by
specifying a number of binary paths and settings in a file and passing
this file to `` meson `` or `` meson configure `` with the `` --cross-file ``
parameter.
This file can live at any location, but you can use the bare filename
2021-06-18 13:38:31 +02:00
(without the folder path) if you put it in
:file: `$XDG_DATA_HOME/meson/cross` or :file: `~/.local/share/meson/cross`
2020-06-12 20:09:42 +02:00
Below are a few example of cross files, but keep in mind that you will
likely have to alter them for your system.
2022-10-20 10:44:04 +02:00
Those running on Arch Linux can use the AUR-maintained packages for some
2020-06-12 20:09:42 +02:00
of those, as they'll have the right values for your system:
- `meson-cross-x86-linux-gnu <https://aur.archlinux.org/packages/meson-cross-x86-linux-gnu> `__
2022-11-07 13:10:16 +01:00
- `meson-cross-aarch64-linux-gnu <https://github.com/dcbaker/archlinux-meson-cross-aarch64-linux-gnu> `__
2020-06-12 20:09:42 +02:00
32-bit build on x86 linux:
2021-04-15 15:47:08 +02:00
.. code-block :: ini
2020-06-12 20:09:42 +02:00
[binaries]
c = '/usr/bin/gcc'
cpp = '/usr/bin/g++'
ar = '/usr/bin/gcc-ar'
strip = '/usr/bin/strip'
2024-05-31 19:14:03 +02:00
pkg-config = '/usr/bin/pkg-config-32'
2020-06-12 20:09:42 +02:00
llvm-config = '/usr/bin/llvm-config32'
[properties]
c_args = ['-m32']
c_link_args = ['-m32']
cpp_args = ['-m32']
cpp_link_args = ['-m32']
[host_machine]
system = 'linux'
cpu_family = 'x86'
cpu = 'i686'
endian = 'little'
64-bit build on ARM linux:
2021-04-15 15:47:08 +02:00
.. code-block :: ini
2020-06-12 20:09:42 +02:00
[binaries]
c = '/usr/bin/aarch64-linux-gnu-gcc'
cpp = '/usr/bin/aarch64-linux-gnu-g++'
ar = '/usr/bin/aarch64-linux-gnu-gcc-ar'
strip = '/usr/bin/aarch64-linux-gnu-strip'
2024-05-31 19:14:03 +02:00
pkg-config = '/usr/bin/aarch64-linux-gnu-pkg-config'
2020-06-12 20:09:42 +02:00
exe_wrapper = '/usr/bin/qemu-aarch64-static'
[host_machine]
system = 'linux'
cpu_family = 'aarch64'
cpu = 'aarch64'
endian = 'little'
2020-09-29 18:37:11 +02:00
64-bit build on x86 Windows:
2020-06-12 20:09:42 +02:00
2021-04-15 15:47:08 +02:00
.. code-block :: ini
2020-06-12 20:09:42 +02:00
[binaries]
c = '/usr/bin/x86_64-w64-mingw32-gcc'
cpp = '/usr/bin/x86_64-w64-mingw32-g++'
ar = '/usr/bin/x86_64-w64-mingw32-ar'
strip = '/usr/bin/x86_64-w64-mingw32-strip'
2024-05-31 19:14:03 +02:00
pkg-config = '/usr/bin/x86_64-w64-mingw32-pkg-config'
2020-06-12 20:09:42 +02:00
exe_wrapper = 'wine'
[host_machine]
system = 'windows'
cpu_family = 'x86_64'
cpu = 'i686'
endian = 'little'