OSDN Git Service

ece646731075c4f52323bb4b1dffa8b6f801f6ed
[android-x86/external-mesa.git] / docs / meson.html
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2 <html lang="en">
3 <head>
4   <meta http-equiv="content-type" content="text/html; charset=utf-8">
5   <title>Compilation and Installation using Meson</title>
6   <link rel="stylesheet" type="text/css" href="mesa.css">
7 </head>
8 <body>
9
10 <div class="header">
11   <h1>The Mesa 3D Graphics Library</h1>
12 </div>
13
14 <iframe src="contents.html"></iframe>
15 <div class="content">
16
17 <h1>Compilation and Installation using Meson</h1>
18
19 <h2 id="basic">1. Basic Usage</h2>
20
21 <p><strong>The Meson build system is generally considered stable and ready
22 for production</strong></p>
23
24 <p>The meson build is tested on Linux, macOS, Cygwin and Haiku, FreeBSD,
25 DragonflyBSD, NetBSD, and should work on OpenBSD.</p>
26
27 <p><strong>Mesa requires Meson >= 0.45.0 to build.</strong>
28
29 Some older versions of meson do not check that they are too old and will error
30 out in odd ways.
31 </p>
32
33 <p>
34 The meson program is used to configure the source directory and generates
35 either a ninja build file or Visual Studio® build files. The latter must
36 be enabled via the <code>--backend</code> switch, as ninja is the default backend on all
37 operating systems. Meson only supports out-of-tree builds, and must be passed a
38 directory to put built and generated sources into. We'll call that directory
39 "build" for examples.
40 </p>
41
42 <pre>
43     meson build/
44 </pre>
45
46 <p>
47 To see a description of your options you can run <code>meson configure</code>
48 along with a build directory to view the selected options for. This will show
49 your meson global arguments and project arguments, along with their defaults
50 and your local settings.
51
52 Meson does not currently support listing options before configure a build
53 directory, but this feature is being discussed upstream.
54 </p>
55
56 <pre>
57     meson configure build/
58 </pre>
59
60 <p>
61 With additional arguments <code>meson configure</code> is used to change
62 options on already configured build directory. All options passed to this
63 command are in the form <code>-D "command"="value"</code>.
64 </p>
65
66 <pre>
67     meson configure build/ -Dprefix=/tmp/install -Dglx=true
68 </pre>
69
70 <p>
71 Note that options taking lists (such as <code>platforms</code>) are
72 <a href="http://mesonbuild.com/Build-options.html#using-build-options">a bit
73 more complicated</a>, but the simplest form compatible with Mesa options
74 is to use a comma to separate values (<code>-D platforms=drm,wayland</code>)
75 and brackets to represent an empty list (<code>-D platforms=[]</code>).
76 </p>
77
78 <p>
79 Once you've run the initial <code>meson</code> command successfully you can use
80 your configured backend to build the project. With ninja, the -C option can be
81 be used to point at a directory to build.
82 </p>
83
84 <pre>
85     ninja -C build/
86 </pre>
87
88 <p>
89 Without arguments, it will produce libGL.so and/or several other libraries
90 depending on the options you have chosen. Later, if you want to rebuild for a
91 different configuration, you should run <code>ninja clean</code> before
92 changing the configuration, or create a new out of tree build directory for
93 each configuration you want to build
94 <a href="http://mesonbuild.com/Using-multiple-build-directories.html">as
95 recommended in the documentation</a>
96 </p>
97
98 <dl>
99 <dt><code>Environment Variables</code></dt>
100 <dd><p>Meson supports the standard CC and CXX environment variables for
101 changing the default compiler, and CFLAGS, CXXFLAGS, and LDFLAGS for setting
102 options to the compiler and linker during the initial configuration.
103
104 These arguments are consumed and stored by meson when it is initialized. To
105 change these flags after the build is initialized (or when doing a first
106 initialization), consider using <code>-D${lang}_args</code> and
107 <code>-D${lang}_link_args</code> instead. Meson will never change compiler in a
108 configured build directory.
109 </p>
110
111 <pre>
112     CC=clang CXX=clang++ meson build-clang
113     ninja -C build-clang
114     ninja -C build-clang clean
115     meson configure build -Dc_args="-Wno-typedef-redefinition"
116     ninja -C build-clang
117 </pre>
118
119 <p>
120 The default compilers depends on your operating system. Meson supports most of
121 the popular compilers, a complete list is available
122 <a href="http://mesonbuild.com/Reference-tables.html#compiler-ids">here</a>.
123 </p>
124
125 <p>Meson also honors <code>DESTDIR</code> for installs</p>
126 </dd>
127
128
129 <dt><code>LLVM</code></dt>
130 <dd><p>Meson includes upstream logic to wrap llvm-config using its standard
131 dependency interface. It will search <code>$PATH</code> (or <code>%PATH%</code> on windows) for
132 llvm-config (and llvm-config$version and llvm-config-$version), so using an
133 LLVM from a non-standard path is as easy as
134 <code>PATH=/path/with/llvm-config:$PATH meson build</code>.
135 </p></dd>
136 </dl>
137
138 <dl>
139 <dt><code>PKG_CONFIG_PATH</code></dt>
140 <dd><p>The
141 <code>pkg-config</code> utility is a hard requirement for configuring and
142 building Mesa on Unix-like systems. It is used to search for external libraries
143 on the system. This environment variable is used to control the search path for
144 <code>pkg-config</code>. For instance, setting
145 <code>PKG_CONFIG_PATH=/usr/X11R6/lib/pkgconfig</code> will search for package
146 metadata in <code>/usr/X11R6</code> before the standard directories.</p>
147 </dd>
148 </dl>
149
150 <p>
151 One of the oddities of meson is that some options are different when passed to
152 the <code>meson</code> than to <code>meson configure</code>. These options are
153 passed as --option=foo to <code>meson</code>, but -Doption=foo to <code>meson
154 configure</code>. Mesa defined options are always passed as -Doption=foo.
155 </p>
156
157 <p>For those coming from autotools be aware of the following:</p>
158
159 <dl>
160 <dt><code>--buildtype/-Dbuildtype</code></dt>
161 <dd><p>This option will set the compiler debug/optimisation levels to aid
162 debugging the Mesa libraries.</p>
163
164 <p>Note that in meson this defaults to <code>debugoptimized</code>, and
165 not setting it to <code>release</code> will yield non-optimal
166 performance and binary size. Not using <code>debug</code> may interfere
167 with debugging as some code and validation will be optimized away.
168 </p>
169
170 <p> For those wishing to pass their own optimization flags, use the <code>plain</code>
171 buildtype, which causes meson to inject no additional compiler arguments, only
172 those in the C/CXXFLAGS and those that mesa itself defines.</p>
173 </dd>
174 </dl>
175
176 <dl>
177 <dt><code>-Db_ndebug</code></dt>
178 <dd><p>This option controls assertions in meson projects. When set to <code>false</code>
179 (the default) assertions are enabled, when set to true they are disabled. This
180 is unrelated to the <code>buildtype</code>; setting the latter to
181 <code>release</code> will not turn off assertions.
182 </p>
183 </dd>
184 </dl>
185
186 </div>
187 </body>
188 </html>