OSDN Git Service

Merge remote-tracking branch 'mesa/19.3' into oreo-x86
[android-x86/external-mesa.git] / meson.build
1 # Copyright © 2017-2019 Intel Corporation
2
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 # SOFTWARE.
20
21 project(
22   'mesa',
23   ['c', 'cpp'],
24   version : run_command(
25     [find_program('python', 'python2', 'python3'), 'bin/meson_get_version.py']
26   ).stdout(),
27   license : 'MIT',
28   meson_version : '>= 0.46',
29   default_options : ['buildtype=debugoptimized', 'b_ndebug=if-release', 'c_std=c99', 'cpp_std=c++14']
30 )
31
32 cc = meson.get_compiler('c')
33 cpp = meson.get_compiler('cpp')
34
35 null_dep = dependency('', required : false)
36
37 # Arguments for the preprocessor, put these in a separate array from the C and
38 # C++ (cpp in meson terminology) arguments since they need to be added to the
39 # default arguments for both C and C++.
40 pre_args = [
41   '-D__STDC_CONSTANT_MACROS',
42   '-D__STDC_FORMAT_MACROS',
43   '-D__STDC_LIMIT_MACROS',
44   '-DPACKAGE_VERSION="@0@"'.format(meson.project_version()),
45   '-DPACKAGE_BUGREPORT="https://gitlab.freedesktop.org/mesa/mesa/issues"',
46 ]
47
48 with_vulkan_icd_dir = get_option('vulkan-icd-dir')
49 with_tests = get_option('build-tests')
50 with_valgrind = get_option('valgrind')
51 with_libunwind = get_option('libunwind')
52 with_glx_read_only_text = get_option('glx-read-only-text')
53 with_glx_direct = get_option('glx-direct')
54 with_osmesa = get_option('osmesa')
55 with_swr_arches = get_option('swr-arches')
56 with_tools = get_option('tools')
57 if with_tools.contains('all')
58   with_tools = [
59     'drm-shim',
60     'etnaviv',
61     'freedreno',
62     'glsl',
63     'intel',
64     'intel-ui',
65     'lima',
66     'nir',
67     'nouveau',
68     'xvmc',
69   ]
70 endif
71
72 dri_drivers_path = get_option('dri-drivers-path')
73 if dri_drivers_path == ''
74   dri_drivers_path = join_paths(get_option('prefix'), get_option('libdir'), 'dri')
75 endif
76 dri_search_path = get_option('dri-search-path')
77 if dri_search_path == ''
78   dri_search_path = dri_drivers_path
79 endif
80
81 with_gles1 = get_option('gles1')
82 with_gles2 = get_option('gles2')
83 if host_machine.system() == 'windows'
84   if with_gles1 == 'auto'
85     with_gles1 = 'false'
86   endif
87   if with_gles2 == 'auto'
88     with_gles2 = 'false'
89   endif
90 endif
91 with_opengl = get_option('opengl')
92
93 # Default shared glapi off for windows, on elsewhere.
94 _sg = get_option('shared-glapi')
95 if _sg == 'auto'
96   with_shared_glapi = host_machine.system() != 'windows'
97 else
98   with_shared_glapi = _sg == 'true'
99 endif
100
101 # shared-glapi is required if at least two OpenGL APIs are being built
102 if not with_shared_glapi
103   if ((with_gles1 == 'true' and with_gles2 == 'true') or
104       (with_gles1 == 'true' and with_opengl) or
105       (with_gles2 == 'true' and with_opengl))
106     error('shared-glapi required for building two or more of OpenGL, OpenGL ES 1.x, OpenGL ES 2.x')
107   endif
108   with_gles1 = 'false'
109   with_gles2 = 'false'
110 endif
111
112 # We require OpenGL for OpenGL ES
113 if not with_opengl
114   if (with_gles1 == 'true' or with_gles2 == 'true') and not with_opengl
115     error('building OpenGL ES without OpenGL is not supported.')
116   endif
117   with_gles1 = 'false'
118   with_gles2 = 'false'
119 endif
120
121 with_gles1 = with_gles1 != 'false'
122 with_gles2 = with_gles2 != 'false'
123 with_any_opengl = with_opengl or with_gles1 or with_gles2
124 # Only build shared_glapi if at least one OpenGL API is enabled
125 with_shared_glapi = with_shared_glapi and with_any_opengl
126
127 system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'gnu/kfreebsd', 'dragonfly', 'linux', 'sunos'].contains(host_machine.system())
128
129 dri_drivers = get_option('dri-drivers')
130 if dri_drivers.contains('auto')
131   if system_has_kms_drm
132     # TODO: PPC, Sparc
133     if ['x86', 'x86_64'].contains(host_machine.cpu_family())
134       dri_drivers = ['i915', 'i965', 'r100', 'r200', 'nouveau']
135     elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
136       dri_drivers = []
137     else
138       error('Unknown architecture @0@. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.'.format(
139             host_machine.cpu_family()))
140     endif
141   elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
142     # only swrast would make sense here, but gallium swrast is a much better default
143     dri_drivers = []
144   else
145     error('Unknown OS @0@. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.'.format(
146           host_machine.system()))
147   endif
148 endif
149
150 with_dri_i915 = dri_drivers.contains('i915')
151 with_dri_i965 = dri_drivers.contains('i965')
152 with_dri_r100 = dri_drivers.contains('r100')
153 with_dri_r200 = dri_drivers.contains('r200')
154 with_dri_nouveau = dri_drivers.contains('nouveau')
155 with_dri_swrast = dri_drivers.contains('swrast')
156
157 with_dri = dri_drivers.length() != 0 and dri_drivers != ['']
158
159 gallium_drivers = get_option('gallium-drivers')
160 if gallium_drivers.contains('auto')
161   if system_has_kms_drm
162     # TODO: PPC, Sparc
163     if ['x86', 'x86_64'].contains(host_machine.cpu_family())
164       gallium_drivers = [
165         'r300', 'r600', 'radeonsi', 'nouveau', 'virgl', 'svga', 'swrast'
166       ]
167     elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
168       gallium_drivers = [
169         'kmsro', 'v3d', 'vc4', 'freedreno', 'etnaviv', 'nouveau',
170         'tegra', 'virgl', 'lima', 'panfrost', 'swrast'
171       ]
172     else
173       error('Unknown architecture @0@. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.'.format(
174             host_machine.cpu_family()))
175     endif
176   elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
177     gallium_drivers = ['swrast']
178   else
179     error('Unknown OS @0@. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.'.format(
180           host_machine.system()))
181   endif
182 endif
183 with_gallium_kmsro = gallium_drivers.contains('kmsro')
184 with_gallium_radeonsi = gallium_drivers.contains('radeonsi')
185 with_gallium_r300 = gallium_drivers.contains('r300')
186 with_gallium_r600 = gallium_drivers.contains('r600')
187 with_gallium_nouveau = gallium_drivers.contains('nouveau')
188 with_gallium_freedreno = gallium_drivers.contains('freedreno')
189 with_gallium_softpipe = gallium_drivers.contains('swrast')
190 with_gallium_vc4 = gallium_drivers.contains('vc4')
191 with_gallium_v3d = gallium_drivers.contains('v3d')
192 with_gallium_panfrost = gallium_drivers.contains('panfrost')
193 with_gallium_etnaviv = gallium_drivers.contains('etnaviv')
194 with_gallium_tegra = gallium_drivers.contains('tegra')
195 with_gallium_iris = gallium_drivers.contains('iris')
196 with_gallium_i915 = gallium_drivers.contains('i915')
197 with_gallium_svga = gallium_drivers.contains('svga')
198 with_gallium_virgl = gallium_drivers.contains('virgl')
199 with_gallium_swr = gallium_drivers.contains('swr')
200 with_gallium_lima = gallium_drivers.contains('lima')
201 with_gallium_zink = gallium_drivers.contains('zink')
202
203 if cc.get_id().startswith('intel') and meson.version().version_compare('< 0.49.1')
204   error('Meson does not have sufficient support of ICC before 0.49.1 to compile mesa')
205 endif
206
207 with_gallium = gallium_drivers.length() != 0 and gallium_drivers != ['']
208
209 if with_gallium and system_has_kms_drm
210   _glx = get_option('glx')
211   _egl = get_option('egl')
212   if _glx == 'dri' or _egl == 'true' or (_glx == 'disabled' and _egl != 'false')
213     with_dri = true
214   endif
215 endif
216
217 _vulkan_drivers = get_option('vulkan-drivers')
218 if _vulkan_drivers.contains('auto')
219   if system_has_kms_drm
220     if host_machine.cpu_family().startswith('x86')
221       _vulkan_drivers = ['amd', 'intel']
222     elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
223       _vulkan_drivers = []
224     else
225       error('Unknown architecture @0@. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.'.format(
226             host_machine.cpu_family()))
227     endif
228   elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
229     # No vulkan driver supports windows or macOS currently
230     _vulkan_drivers = []
231   else
232     error('Unknown OS @0@. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.'.format(
233           host_machine.system()))
234   endif
235 endif
236
237 with_intel_vk = _vulkan_drivers.contains('intel')
238 with_amd_vk = _vulkan_drivers.contains('amd')
239 with_freedreno_vk = _vulkan_drivers.contains('freedreno')
240 with_any_vk = _vulkan_drivers.length() != 0 and _vulkan_drivers != ['']
241
242 if with_freedreno_vk and get_option('I-love-half-baked-turnips') != true
243   error('Cannot enable freedreno vulkan driver')
244 endif
245
246 if with_dri_swrast and (with_gallium_softpipe or with_gallium_swr)
247   error('Only one swrast provider can be built')
248 endif
249 if with_dri_i915 and with_gallium_i915
250   error('Only one i915 provider can be built')
251 endif
252 if with_gallium_kmsro and not (with_gallium_v3d or with_gallium_vc4 or with_gallium_etnaviv or with_gallium_freedreno or with_gallium_panfrost or with_gallium_lima)
253   error('kmsro driver requires one or more renderonly drivers (vc4, etnaviv, freedreno, panfrost, lima)')
254 endif
255 if with_gallium_tegra and not with_gallium_nouveau
256   error('tegra driver requires nouveau driver')
257 endif
258
259 if host_machine.system() == 'darwin'
260   with_dri_platform = 'apple'
261   pre_args += '-DBUILDING_MESA'
262 elif ['windows', 'cygwin'].contains(host_machine.system())
263   with_dri_platform = 'windows'
264 elif system_has_kms_drm
265   with_dri_platform = 'drm'
266 else
267   # FIXME: haiku doesn't use dri, and xlib doesn't use dri, probably should
268   # assert here that one of those cases has been met.
269   # FIXME: illumos ends up here as well
270   with_dri_platform = 'none'
271 endif
272
273 _platforms = get_option('platforms')
274 if _platforms.contains('auto')
275   if system_has_kms_drm
276     _platforms = ['x11', 'wayland', 'drm', 'surfaceless']
277   elif ['darwin', 'cygwin'].contains(host_machine.system())
278     _platforms = ['x11', 'surfaceless']
279   elif ['haiku'].contains(host_machine.system())
280     _platforms = ['haiku']
281   elif host_machine.system() == 'windows'
282     _platforms = ['windows']
283   else
284     error('Unknown OS @0@. Please pass -Dplatforms to set platforms. Patches gladly accepted to fix this.'.format(
285           host_machine.system()))
286   endif
287 endif
288
289 with_platform_android = _platforms.contains('android')
290 with_platform_x11 = _platforms.contains('x11')
291 with_platform_wayland = _platforms.contains('wayland')
292 with_platform_drm = _platforms.contains('drm')
293 with_platform_haiku = _platforms.contains('haiku')
294 with_platform_surfaceless = _platforms.contains('surfaceless')
295 with_platform_windows = _platforms.contains('windows')
296
297 with_platforms = false
298 if _platforms.length() != 0 and _platforms != ['']
299   # sanity check that list contains no empty strings
300   if _platforms.contains('')
301     error('Invalid argument list given to -Dplatforms, please fix.')
302   endif
303   with_platforms = true
304   egl_native_platform = _platforms[0]
305 endif
306
307 _xlib_lease = get_option('xlib-lease')
308 if _xlib_lease == 'auto'
309   with_xlib_lease = with_platform_x11 and with_platform_drm
310 else
311   with_xlib_lease = _xlib_lease == 'true'
312 endif
313
314 with_glx = get_option('glx')
315 if with_glx == 'auto'
316   if with_dri
317     with_glx = 'dri'
318   elif with_platform_haiku
319     with_glx = 'disabled'
320   elif host_machine.system() == 'windows'
321     with_glx = 'disabled'
322   elif with_gallium
323     # Even when building just gallium drivers the user probably wants dri
324     with_glx = 'dri'
325   elif with_platform_x11 and with_any_opengl and not with_any_vk
326     # The automatic behavior should not be to turn on xlib based glx when
327     # building only vulkan drivers
328     with_glx = 'xlib'
329   else
330     with_glx = 'disabled'
331   endif
332 endif
333 if with_glx == 'dri'
334    if with_gallium
335       with_dri = true
336    endif
337 endif
338
339 if not (with_dri or with_gallium or with_glx != 'disabled')
340   with_gles1 = false
341   with_gles2 = false
342   with_opengl = false
343   with_any_opengl = false
344   with_shared_glapi = false
345 endif
346
347 _gbm = get_option('gbm')
348 if _gbm == 'auto'
349   with_gbm = system_has_kms_drm and with_dri
350 else
351   with_gbm = _gbm == 'true'
352 endif
353 if with_gbm and not system_has_kms_drm
354   error('GBM only supports DRM/KMS platforms')
355 endif
356
357 _egl = get_option('egl')
358 if _egl == 'auto'
359   with_egl = (
360     not ['darwin', 'windows'].contains(host_machine.system()) and
361     with_dri and with_shared_glapi and with_platforms
362   )
363 elif _egl == 'true'
364   if not with_dri
365     error('EGL requires dri')
366   elif not with_shared_glapi
367     error('EGL requires shared-glapi')
368   elif not with_platforms
369     error('No platforms specified, consider -Dplatforms=drm,x11,surfaceless at least')
370   elif not ['disabled', 'dri'].contains(with_glx)
371     error('EGL requires dri, but a GLX is being built without dri')
372   elif ['darwin', 'windows'].contains(host_machine.system())
373     error('EGL is not available on Windows or MacOS')
374   endif
375   with_egl = true
376 else
377   with_egl = false
378 endif
379
380 if with_egl and not (with_platform_drm or with_platform_surfaceless or with_platform_android)
381   if with_gallium_radeonsi
382     error('RadeonSI requires the drm, surfaceless or android platform when using EGL')
383   endif
384   if with_gallium_virgl
385     error('Virgl requires the drm, surfaceless or android platform when using EGL')
386   endif
387 endif
388
389 # Android uses emutls for versions <= P/28. For USE_ELF_TLS we need ELF TLS.
390 if host_machine.system() != 'windows' and (not with_platform_android or get_option('platform-sdk-version') >= 29)
391   pre_args += '-DUSE_ELF_TLS'
392 endif
393
394 if with_glx != 'disabled'
395   if not (with_platform_x11 and with_any_opengl)
396     error('Cannot build GLX support without X11 platform support and at least one OpenGL API')
397   elif with_glx == 'gallium-xlib'
398     if not with_gallium
399       error('Gallium-xlib based GLX requires at least one gallium driver')
400     elif not with_gallium_softpipe
401       error('Gallium-xlib based GLX requires softpipe or llvmpipe.')
402     elif with_dri
403       error('gallium-xlib conflicts with any dri driver')
404     endif
405   elif with_glx == 'xlib'
406     if with_dri
407       error('xlib conflicts with any dri driver')
408     endif
409   elif with_glx == 'dri'
410     if not with_shared_glapi
411       error('dri based GLX requires shared-glapi')
412     endif
413   endif
414 endif
415
416 with_glvnd = get_option('glvnd')
417 if with_glvnd
418   if with_platform_windows
419     error('glvnd cannot be used on Windows')
420   elif with_glx == 'xlib' or with_glx == 'gallium-xlib'
421     error('Cannot build glvnd support for GLX that is not DRI based.')
422   elif with_glx == 'disabled' and not with_egl
423     error('glvnd requires DRI based GLX and/or EGL')
424   endif
425   if get_option('egl-lib-suffix') != ''
426     error('''EGL lib suffix can't be used with libglvnd''')
427   endif
428 endif
429
430 if with_vulkan_icd_dir == ''
431   with_vulkan_icd_dir = join_paths(get_option('datadir'), 'vulkan/icd.d')
432 endif
433
434 # GNU/Hurd includes egl_dri2, without drm.
435 with_dri2 = (with_dri or with_any_vk) and (with_dri_platform == 'drm' or
436   host_machine.system() == 'gnu')
437 _dri3 = get_option('dri3')
438 if _dri3 == 'auto'
439   with_dri3 = system_has_kms_drm and with_dri2
440 else
441   with_dri3 = _dri3 == 'true'
442 endif
443
444 if with_any_vk and (with_platform_x11 and not with_dri3)
445   error('Vulkan drivers require dri3 for X11 support')
446 endif
447 if with_dri
448   if with_glx == 'disabled' and not with_egl and not with_gbm and with_osmesa != 'classic'
449     error('building dri drivers require at least one windowing system or classic osmesa')
450   endif
451 endif
452
453 prog_pkgconfig = find_program('pkg-config')
454
455 _vdpau = get_option('gallium-vdpau')
456 if not system_has_kms_drm
457   if _vdpau == 'true'
458     error('VDPAU state tracker can only be build on unix-like OSes.')
459   else
460     _vdpau = 'false'
461   endif
462 elif not with_platform_x11
463   if _vdpau == 'true'
464     error('VDPAU state tracker requires X11 support.')
465   else
466     _vdpau = 'false'
467   endif
468 elif not (with_gallium_r300 or with_gallium_r600 or with_gallium_radeonsi or
469           with_gallium_nouveau)
470   if _vdpau == 'true'
471     error('VDPAU state tracker requires at least one of the following gallium drivers: r300, r600, radeonsi, nouveau.')
472   else
473     _vdpau = 'false'
474   endif
475 endif
476 dep_vdpau = null_dep
477 with_gallium_vdpau = false
478 if _vdpau != 'false'
479   dep_vdpau = dependency('vdpau', version : '>= 1.1', required : _vdpau == 'true')
480   if dep_vdpau.found()
481     dep_vdpau = declare_dependency(
482       compile_args : run_command(prog_pkgconfig, ['vdpau', '--cflags']).stdout().split()
483     )
484     with_gallium_vdpau = true
485   endif
486 endif
487
488 if with_gallium_vdpau
489   pre_args += '-DHAVE_ST_VDPAU'
490 endif
491 vdpau_drivers_path = get_option('vdpau-libs-path')
492 if vdpau_drivers_path == ''
493   vdpau_drivers_path = join_paths(get_option('libdir'), 'vdpau')
494 endif
495
496 if with_gallium_zink
497   dep_vulkan = dependency('vulkan')
498 endif
499
500 _xvmc = get_option('gallium-xvmc')
501 if not system_has_kms_drm
502   if _xvmc == 'true'
503     error('XVMC state tracker can only be build on unix-like OSes.')
504   else
505     _xvmc = 'false'
506   endif
507 elif not with_platform_x11
508   if _xvmc == 'true'
509     error('XVMC state tracker requires X11 support.')
510   else
511     _xvmc = 'false'
512   endif
513 elif not (with_gallium_r600 or with_gallium_nouveau)
514   if _xvmc == 'true'
515     error('XVMC state tracker requires at least one of the following gallium drivers: r600, nouveau.')
516   else
517     _xvmc = 'false'
518   endif
519 endif
520 dep_xvmc = null_dep
521 dep_xv = null_dep
522 with_gallium_xvmc = false
523 if _xvmc != 'false'
524   dep_xvmc = dependency('xvmc', version : '>= 1.0.6', required : _xvmc == 'true')
525   dep_xv = dependency('xv', required : _xvmc == 'true')
526   with_gallium_xvmc = dep_xvmc.found() and dep_xv.found()
527 endif
528
529 xvmc_drivers_path = get_option('xvmc-libs-path')
530 if xvmc_drivers_path == ''
531   xvmc_drivers_path = get_option('libdir')
532 endif
533
534 _omx = get_option('gallium-omx')
535 if not system_has_kms_drm
536   if ['auto', 'disabled'].contains(_omx)
537     _omx = 'disabled'
538   else
539     error('OMX state tracker can only be built on unix-like OSes.')
540   endif
541 elif not (with_gallium_r600 or with_gallium_radeonsi or with_gallium_nouveau)
542   if ['auto', 'disabled'].contains(_omx)
543     _omx = 'disabled'
544   else
545     error('OMX state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau.')
546   endif
547 endif
548 with_gallium_omx = _omx
549 dep_omx = null_dep
550 dep_omx_other = []
551 if ['auto', 'bellagio'].contains(_omx)
552   dep_omx = dependency(
553     'libomxil-bellagio', required : _omx == 'bellagio'
554   )
555   if dep_omx.found()
556     with_gallium_omx = 'bellagio'
557   endif
558 endif
559 if ['auto', 'tizonia'].contains(_omx)
560   if with_dri and with_egl
561     dep_omx = dependency(
562       'libtizonia', version : '>= 0.10.0',
563       required : _omx == 'tizonia',
564     )
565     dep_omx_other = [
566       dependency('libtizplatform', required : _omx == 'tizonia'),
567       dependency('tizilheaders', required : _omx == 'tizonia'),
568     ]
569     if dep_omx.found() and dep_omx_other[0].found() and dep_omx_other[1].found()
570       with_gallium_omx = 'tizonia'
571     endif
572   elif _omx == 'tizonia'
573     error('OMX-Tizonia state tracker requires dri and egl')
574   endif
575 endif
576 if _omx == 'auto'
577   with_gallium_omx = 'disabled'
578 else
579   with_gallium_omx = _omx
580 endif
581
582 pre_args += [
583   '-DENABLE_ST_OMX_BELLAGIO=' + (with_gallium_omx == 'bellagio' ? '1' : '0'),
584   '-DENABLE_ST_OMX_TIZONIA=' + (with_gallium_omx == 'tizonia' ? '1' : '0'),
585 ]
586
587
588 omx_drivers_path = get_option('omx-libs-path')
589
590 if with_gallium_omx != 'disabled'
591   # Figure out where to put the omx driver.
592   # FIXME: this could all be vastly simplified by adding a 'defined_variable'
593   # argument to meson's get_pkgconfig_variable method.
594   if omx_drivers_path == ''
595     _omx_libdir = dep_omx.get_pkgconfig_variable('libdir')
596     _omx_drivers_dir = dep_omx.get_pkgconfig_variable('pluginsdir')
597     if _omx_libdir == get_option('libdir')
598       omx_drivers_path = _omx_drivers_dir
599     else
600       _omx_base_dir = []
601       # This will fail on windows. Does OMX run on windows?
602       _omx_libdir = _omx_libdir.split('/')
603       _omx_drivers_dir = _omx_drivers_dir.split('/')
604       foreach o : _omx_drivers_dir
605         if not _omx_libdir.contains(o)
606           _omx_base_dir += o
607         endif
608       endforeach
609       omx_drivers_path = join_paths(get_option('libdir'), _omx_base_dir)
610     endif
611   endif
612 endif
613
614 _va = get_option('gallium-va')
615 if not system_has_kms_drm
616   if _va == 'true'
617     error('VA state tracker can only be built on unix-like OSes.')
618   else
619     _va = 'false'
620   endif
621 elif not (with_gallium_r600 or with_gallium_radeonsi or with_gallium_nouveau)
622   if _va == 'true'
623     error('VA state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau.')
624   else
625     _va = 'false'
626   endif
627 endif
628 with_gallium_va = false
629 dep_va = null_dep
630 if _va != 'false'
631   dep_va = dependency('libva', version : '>= 0.38.0', required : _va == 'true')
632   if dep_va.found()
633     dep_va_headers = declare_dependency(
634       compile_args : run_command(prog_pkgconfig, ['libva', '--cflags']).stdout().split()
635     )
636     with_gallium_va = true
637   endif
638 endif
639
640 va_drivers_path = get_option('va-libs-path')
641 if va_drivers_path == ''
642   va_drivers_path = join_paths(get_option('libdir'), 'dri')
643 endif
644
645 _xa = get_option('gallium-xa')
646 if not system_has_kms_drm
647   if _xa == 'true'
648     error('XA state tracker can only be built on unix-like OSes.')
649   else
650     _xa = 'false'
651   endif
652 elif not (with_gallium_nouveau or with_gallium_freedreno or with_gallium_i915
653           or with_gallium_svga)
654   if _xa == 'true'
655     error('XA state tracker requires at least one of the following gallium drivers: nouveau, freedreno, i915, svga.')
656   else
657     _xa = 'false'
658   endif
659 endif
660 with_gallium_xa = _xa != 'false'
661
662 d3d_drivers_path = get_option('d3d-drivers-path')
663 if d3d_drivers_path == ''
664   d3d_drivers_path = join_paths(get_option('prefix'), get_option('libdir'), 'd3d')
665 endif
666
667 with_gallium_st_nine =  get_option('gallium-nine')
668 if with_gallium_st_nine
669   if not with_gallium_softpipe
670     error('The nine state tracker requires gallium softpipe/llvmpipe.')
671   elif not (with_gallium_radeonsi or with_gallium_nouveau or with_gallium_r600
672             or with_gallium_r300 or with_gallium_svga or with_gallium_i915
673             or with_gallium_iris)
674     error('The nine state tracker requires at least one non-swrast gallium driver.')
675   endif
676   if not with_dri3
677     error('Using nine with wine requires dri3')
678   endif
679 endif
680
681 if get_option('power8') != 'false'
682   # on old versions of meson the cpu family would return as ppc64le on little
683   # endian power8, this was changed in 0.48 such that the family would always
684   # be ppc64 regardless of endianness, and then the machine.endian() value
685   # should be checked. Since we support versions < 0.48 we need to use
686   # startswith.
687   if host_machine.cpu_family().startswith('ppc64') and host_machine.endian() == 'little'
688     if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.8')
689       error('Altivec is not supported with gcc version < 4.8.')
690     endif
691     if cc.compiles('''
692         #include <altivec.h>
693         int main() {
694           vector unsigned char r;
695           vector unsigned int v = vec_splat_u32 (1);
696           r = __builtin_vec_vgbbd ((vector unsigned char) v);
697           return 0;
698         }''',
699         args : '-mpower8-vector',
700         name : 'POWER8 intrinsics')
701       pre_args += ['-D_ARCH_PWR8', '-mpower8-vector']
702     elif get_option('power8') == 'true'
703       error('POWER8 intrinsic support required but not found.')
704     endif
705   endif
706 endif
707
708 _opencl = get_option('gallium-opencl')
709 clover_cpp_std = []
710 if _opencl != 'disabled'
711   if not with_gallium
712     error('OpenCL Clover implementation requires at least one gallium driver.')
713   endif
714
715   dep_clc = dependency('libclc')
716   with_gallium_opencl = true
717   with_opencl_icd = _opencl == 'icd'
718
719   with_opencl_spirv = get_option('opencl-spirv')
720   if with_opencl_spirv
721     dep_spirv_tools = dependency('SPIRV-Tools', required : true, version : '>= 2018.0')
722     # LLVMSPIRVLib is available at https://github.com/KhronosGroup/SPIRV-LLVM-Translator
723     dep_llvmspirvlib = dependency('LLVMSPIRVLib', required : true, version : '>= 0.2.1')
724   else
725     dep_spirv_tools = null_dep
726     dep_llvmspirvlib = null_dep
727   endif
728
729   if host_machine.cpu_family().startswith('ppc') and cpp.compiles('''
730       #if !defined(__VEC__) || !defined(__ALTIVEC__)
731       #error "AltiVec not enabled"
732       #endif''',
733       name : 'Altivec')
734     clover_cpp_std += ['cpp_std=gnu++11']
735   endif
736 else
737   dep_clc = null_dep
738   dep_spirv_tools = null_dep
739   dep_llvmspirvlib = null_dep
740   with_gallium_opencl = false
741   with_opencl_icd = false
742   with_opencl_spirv = false
743 endif
744
745 gl_pkgconfig_c_flags = []
746 if with_platform_x11
747   if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm')
748     pre_args += '-DHAVE_X11_PLATFORM'
749   endif
750   if with_glx == 'xlib' or with_glx == 'gallium-xlib'
751     pre_args += '-DUSE_XSHM'
752   else
753     pre_args += '-DGLX_INDIRECT_RENDERING'
754     if with_glx_direct
755       pre_args += '-DGLX_DIRECT_RENDERING'
756     endif
757     if with_dri_platform == 'drm'
758       pre_args += '-DGLX_USE_DRM'
759     elif with_dri_platform == 'apple'
760       pre_args += '-DGLX_USE_APPLEGL'
761     elif with_dri_platform == 'windows'
762       pre_args += '-DGLX_USE_WINDOWSGL'
763     endif
764   endif
765 else
766   pre_args += '-DEGL_NO_X11'
767   gl_pkgconfig_c_flags += '-DEGL_NO_X11'
768 endif
769 if with_platform_drm
770   if with_egl and not with_gbm
771     error('EGL drm platform requires gbm')
772   endif
773   pre_args += '-DHAVE_DRM_PLATFORM'
774 endif
775 if with_platform_surfaceless
776   pre_args += '-DHAVE_SURFACELESS_PLATFORM'
777 endif
778 if with_platform_android
779   dep_android = [
780     dependency('cutils'),
781     dependency('hardware'),
782     dependency('sync'),
783   ]
784   if get_option('platform-sdk-version') >= 26
785     dep_android += dependency('nativewindow')
786   endif
787   pre_args += '-DHAVE_ANDROID_PLATFORM'
788 endif
789 if with_platform_haiku
790   pre_args += '-DHAVE_HAIKU_PLATFORM'
791 endif
792
793 if meson.version().version_compare('>=0.50')
794   prog_python = import('python').find_installation('python3')
795 else
796   prog_python = import('python3').find_python()
797 endif
798 has_mako = run_command(
799   prog_python, '-c',
800   '''
801 from distutils.version import StrictVersion
802 import mako
803 assert StrictVersion(mako.__version__) > StrictVersion("0.8.0")
804   ''')
805 if has_mako.returncode() != 0
806   error('Python (3.x) mako module >= 0.8.0 required to build mesa.')
807 endif
808
809 if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6')
810   error('When using GCC, version 4.4.6 or later is required.')
811 endif
812
813 # Support systems without ETIME (e.g. FreeBSD)
814 if cc.get_define('ETIME', prefix : '#include <errno.h>') == ''
815   pre_args += '-DETIME=ETIMEDOUT'
816 endif
817
818 # Define DEBUG for debug builds only (debugoptimized is not included on this one)
819 if get_option('buildtype') == 'debug'
820   pre_args += '-DDEBUG'
821 endif
822
823 with_shader_cache = false
824 _shader_cache = get_option('shader-cache')
825 if _shader_cache != 'false'
826   if host_machine.system() == 'windows'
827     if _shader_cache == 'true'
828       error('Shader Cache does not currently work on Windows')
829     endif
830   else
831     pre_args += '-DENABLE_SHADER_CACHE'
832     with_shader_cache = true
833   endif
834 endif
835 if with_amd_vk and not with_shader_cache
836   error('Radv requires shader cache support')
837 endif
838
839 # Check for GCC style builtins
840 foreach b : ['bswap32', 'bswap64', 'clz', 'clzll', 'ctz', 'expect', 'ffs',
841              'ffsll', 'popcount', 'popcountll', 'unreachable']
842   if cc.has_function(b)
843     pre_args += '-DHAVE___BUILTIN_@0@'.format(b.to_upper())
844   endif
845 endforeach
846
847 # check for GCC __attribute__
848 foreach a : ['const', 'flatten', 'malloc', 'pure', 'unused',
849              'warn_unused_result', 'weak',]
850   if cc.compiles('int foo(void) __attribute__((@0@));'.format(a),
851                  name : '__attribute__((@0@))'.format(a))
852     pre_args += '-DHAVE_FUNC_ATTRIBUTE_@0@'.format(a.to_upper())
853   endif
854 endforeach
855 if cc.compiles('int foo(const char *p, ...) __attribute__((format(printf, 1, 2)));',
856                name : '__attribute__((format(...)))')
857   pre_args += '-DHAVE_FUNC_ATTRIBUTE_FORMAT'
858 endif
859 if cc.compiles('struct __attribute__((packed)) foo { int bar; };',
860                name : '__attribute__((packed))')
861   pre_args += '-DHAVE_FUNC_ATTRIBUTE_PACKED'
862 endif
863 if cc.compiles('int *foo(void) __attribute__((returns_nonnull));',
864                name : '__attribute__((returns_nonnull))')
865   pre_args += '-DHAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL'
866 endif
867 if cc.compiles('''int foo_def(void) __attribute__((visibility("default")));
868                   int foo_hid(void) __attribute__((visibility("hidden")));
869                   int foo_int(void) __attribute__((visibility("internal")));
870                   int foo_pro(void) __attribute__((visibility("protected")));''',
871                name : '__attribute__((visibility(...)))')
872   pre_args += '-DHAVE_FUNC_ATTRIBUTE_VISIBILITY'
873 endif
874 if cc.compiles('int foo(void) { return 0; } int bar(void) __attribute__((alias("foo")));',
875                name : '__attribute__((alias(...)))')
876   pre_args += '-DHAVE_FUNC_ATTRIBUTE_ALIAS'
877 endif
878 if cc.compiles('int foo(void) __attribute__((__noreturn__));',
879                name : '__attribute__((__noreturn__))')
880   pre_args += '-DHAVE_FUNC_ATTRIBUTE_NORETURN'
881 endif
882 if cc.compiles('__uint128_t foo(void) { return 0; }',
883                name : '__uint128_t')
884   pre_args += '-DHAVE_UINT128'
885 endif
886
887 # TODO: this is very incomplete
888 if ['linux', 'cygwin', 'gnu', 'freebsd', 'gnu/kfreebsd'].contains(host_machine.system())
889   pre_args += '-D_GNU_SOURCE'
890 elif host_machine.system() == 'sunos'
891   pre_args += '-D__EXTENSIONS__'
892 elif host_machine.system() == 'windows'
893   pre_args += [
894     '-D_WINDOWS', '-D_WIN32_WINNT=0x0601', '-D_WINVER=0x0601',
895     '-DPIPE_SUBSYSTEM_WINDOWS_USER',
896     '-D_USE_MATH_DEFINES',  # XXX: scons doesn't use this for mingw
897   ]
898   if cc.get_id() == 'msvc'
899     pre_args += [
900       '-DVC_EXTRALEAN',
901       '-D_CRT_SECURE_NO_WARNINGS',
902       '-D_CRT_SECURE_NO_DEPRECATE',
903       '-D_SCL_SECURE_NO_WARNINGS',
904       '-D_SCL_SECURE_NO_DEPRECATE',
905       '-D_ALLOW_KEYWORD_MACROS',
906       '-D_HAS_EXCEPTIONS=0', # Tell C++ STL to not use exceptions
907     ]
908   else
909     pre_args += ['-D__MSVCRT_VERSION__=0x0700']
910   endif
911 endif
912
913 # Check for generic C arguments
914 c_args = []
915 c_vis_args = []
916 c_msvc_compat_args = []
917 no_override_init_args = []
918 cpp_args = []
919 cpp_vis_args = []
920 cpp_msvc_compat_args = []
921 if cc.get_id() == 'msvc'
922   foreach a : ['/wd4018',  # signed/unsigned mismatch
923                '/wd4056',  # overflow in floating-point constant arithmetic
924                '/wd4244',  # conversion from 'type1' to 'type2', possible loss of data
925                '/wd4267',  # 'var' : conversion from 'size_t' to 'type', possible loss of data
926                '/wd4305',  # trancation from 'type1' to 'type2'
927                '/wd4351',  # new behavior: elements of array 'array' will be default initialized
928                '/wd4756',  # overflow in constant arithmetic
929                '/wd4800',  # forcing value to bool 'true' or 'false' (performance warning)
930                '/wd4996',  # disabled deprecated POSIX name warnings
931                '/wd4291']  # no matching operator delete found
932     if cc.has_argument(a)
933       c_args += a
934     endif
935     if cpp.has_argument(a)
936       cpp_args += a
937     endif
938   endforeach
939   if cc.has_argument('-Wmicrosoft-enum-value')  # Clang
940     c_args += '-Wno-microsoft-enum-value'
941     cpp_args += '-Wno-microsoft-enum-value'
942   endif
943 else
944   _trial = [
945     '-Werror=implicit-function-declaration',
946     '-Werror=missing-prototypes',
947     '-Werror=return-type',
948     '-Werror=empty-body',
949     '-Werror=incompatible-pointer-types',
950     '-Wno-missing-field-initializers',
951     '-Wno-format-truncation',
952     '-fno-math-errno',
953     '-fno-trapping-math',
954     '-Qunused-arguments',
955   ]
956   # MinGW chokes on format specifiers and I can't get it all working
957   if not (cc.get_id() == 'gcc' and host_machine.system() == 'windows')
958     _trial += ['-Werror=format', '-Wformat-security']
959   endif
960   foreach a : _trial
961     if cc.has_argument(a)
962       c_args += a
963     endif
964   endforeach
965
966   _trial = [
967     '-Werror=return-type',
968     '-Werror=empty-body',
969     '-Wno-non-virtual-dtor',
970     '-Wno-missing-field-initializers',
971     '-Wno-format-truncation',
972     '-fno-math-errno',
973     '-fno-trapping-math',
974     '-Qunused-arguments',
975   ]
976   # MinGW chokes on format specifiers and I can't get it all working
977   if not (cc.get_id() == 'gcc' and host_machine.system() == 'windows')
978     _trial += ['-Werror=format', '-Wformat-security']
979   endif
980   foreach a : _trial
981     if cpp.has_argument(a)
982       cpp_args += a
983     endif
984   endforeach
985
986   foreach a : ['-Wno-override-init', '-Wno-initializer-overrides']
987     if cc.has_argument(a)
988       no_override_init_args += a
989     endif
990   endforeach
991
992   if cc.has_argument('-fvisibility=hidden')
993     c_vis_args += '-fvisibility=hidden'
994   endif
995
996   # Check for C and C++ arguments for MSVC2013 compatibility. These are only
997   # used in parts of the mesa code base that need to compile with old versions
998   # of MSVC, mainly common code
999   foreach a : ['-Werror=pointer-arith', '-Werror=vla']
1000     if cc.has_argument(a)
1001       c_msvc_compat_args += a
1002     endif
1003     if cpp.has_argument(a)
1004       cpp_msvc_compat_args += a
1005     endif
1006   endforeach
1007
1008   if cpp.has_argument('-fvisibility=hidden')
1009     cpp_vis_args += '-fvisibility=hidden'
1010   endif
1011
1012 endif
1013
1014 # set linker arguments
1015 if host_machine.system() == 'windows'
1016   if cc.get_id() == 'msvc'
1017     add_project_link_arguments(
1018       '/fixed:no',
1019       '/incremental:no',
1020       '/dynamicbase',
1021       '/nxcompat',
1022       language : ['c', 'cpp'],
1023     )
1024   else
1025     add_project_link_arguments(
1026       '-Wl,--nxcompat',
1027       '-Wl,--dynamicbase',
1028       '-static-libgcc',
1029       '-static-libstdc++',
1030       language : ['c', 'cpp'],
1031     )
1032   endif
1033 endif
1034
1035 if host_machine.cpu_family().startswith('x86') and cc.get_id() != 'msvc'
1036   pre_args += '-DUSE_SSE41'
1037   with_sse41 = true
1038   sse41_args = ['-msse4.1']
1039
1040   # GCC on x86 (not x86_64) with -msse* assumes a 16 byte aligned stack, but
1041   # that's not guaranteed
1042   if host_machine.cpu_family() == 'x86'
1043     sse41_args += '-mstackrealign'
1044   endif
1045 else
1046   with_sse41 = false
1047   sse41_args = []
1048 endif
1049
1050 # Check for GCC style atomics
1051 dep_atomic = null_dep
1052
1053 if cc.compiles('''#include <stdint.h>
1054                   int main() {
1055                     struct {
1056                       uint64_t *v;
1057                     } x;
1058                     return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) &
1059                            (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL);
1060
1061                   }''',
1062                name : 'GCC atomic builtins')
1063   pre_args += '-DUSE_GCC_ATOMIC_BUILTINS'
1064
1065   # Not all atomic calls can be turned into lock-free instructions, in which
1066   # GCC will make calls into the libatomic library. Check whether we need to
1067   # link with -latomic.
1068   #
1069   # This can happen for 64-bit atomic operations on 32-bit architectures such
1070   # as ARM.
1071   if not cc.links('''#include <stdint.h>
1072                      int main() {
1073                        struct {
1074                          uint64_t *v;
1075                        } x;
1076                        return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) &
1077                               (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL);
1078                      }''',
1079                   name : 'GCC atomic builtins required -latomic')
1080     dep_atomic = cc.find_library('atomic')
1081   endif
1082 endif
1083 if not cc.links('''#include <stdint.h>
1084                    uint64_t v;
1085                    int main() {
1086                      return __sync_add_and_fetch(&v, (uint64_t)1);
1087                    }''',
1088                 dependencies : dep_atomic,
1089                 name : 'GCC 64bit atomics')
1090   pre_args += '-DMISSING_64BIT_ATOMICS'
1091 endif
1092
1093 dep_ws2_32 = cc.find_library('ws2_32', required : with_platform_windows)
1094
1095 # TODO: shared/static? Is this even worth doing?
1096
1097 with_asm_arch = ''
1098 if host_machine.cpu_family() == 'x86'
1099   if system_has_kms_drm or host_machine.system() == 'gnu'
1100     with_asm_arch = 'x86'
1101     pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM',
1102                  '-DUSE_SSE_ASM']
1103
1104     if with_glx_read_only_text
1105       pre_args += ['-DGLX_X86_READONLY_TEXT']
1106     endif
1107   endif
1108 elif host_machine.cpu_family() == 'x86_64'
1109   if system_has_kms_drm
1110     with_asm_arch = 'x86_64'
1111     pre_args += ['-DUSE_X86_64_ASM']
1112   endif
1113 elif host_machine.cpu_family() == 'arm'
1114   if system_has_kms_drm
1115     with_asm_arch = 'arm'
1116     pre_args += ['-DUSE_ARM_ASM']
1117   endif
1118 elif host_machine.cpu_family() == 'aarch64'
1119   if system_has_kms_drm
1120     with_asm_arch = 'aarch64'
1121     pre_args += ['-DUSE_AARCH64_ASM']
1122   endif
1123 elif host_machine.cpu_family() == 'sparc64'
1124   if system_has_kms_drm
1125     with_asm_arch = 'sparc'
1126     pre_args += ['-DUSE_SPARC_ASM']
1127   endif
1128 elif host_machine.cpu_family().startswith('ppc64') and host_machine.endian() == 'little'
1129   if system_has_kms_drm
1130     with_asm_arch = 'ppc64le'
1131     pre_args += ['-DUSE_PPC64LE_ASM']
1132   endif
1133 endif
1134
1135 # Check for standard headers and functions
1136 if (cc.has_header_symbol('sys/sysmacros.h', 'major') and
1137   cc.has_header_symbol('sys/sysmacros.h', 'minor') and
1138   cc.has_header_symbol('sys/sysmacros.h', 'makedev'))
1139   pre_args += '-DMAJOR_IN_SYSMACROS'
1140 endif
1141 if (cc.has_header_symbol('sys/mkdev.h', 'major') and
1142   cc.has_header_symbol('sys/mkdev.h', 'minor') and
1143   cc.has_header_symbol('sys/mkdev.h', 'makedev'))
1144   pre_args += '-DMAJOR_IN_MKDEV'
1145 endif
1146
1147 foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h', 'endian.h', 'dlfcn.h', 'execinfo.h', 'sys/shm.h', 'cet.h']
1148   if cc.compiles('#include <@0@>'.format(h), name : '@0@'.format(h))
1149     pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify())
1150   endif
1151 endforeach
1152
1153 foreach f : ['strtof', 'mkostemp', 'timespec_get', 'memfd_create', 'random_r', 'flock']
1154   if cc.has_function(f)
1155     pre_args += '-DHAVE_@0@'.format(f.to_upper())
1156   endif
1157 endforeach
1158
1159 if cc.has_header_symbol('errno.h', 'program_invocation_name',
1160                         args : '-D_GNU_SOURCE')
1161    pre_args += '-DHAVE_PROGRAM_INVOCATION_NAME'
1162 elif with_tools.contains('intel')
1163   error('Intel tools require the program_invocation_name variable')
1164 endif
1165
1166 # MinGW provides a __builtin_posix_memalign function, but not a posix_memalign.
1167 # This means that this check will succeed, but then compilation will later
1168 # fail. MSVC doesn't have this function at all, so only check for it on
1169 # non-windows platforms.
1170 if host_machine.system() != 'windows'
1171   if cc.has_function('posix_memalign')
1172     pre_args += '-DHAVE_POSIX_MEMALIGN'
1173   endif
1174 endif
1175
1176 # strtod locale support
1177 if cc.links('''
1178     #define _GNU_SOURCE
1179     #include <stdlib.h>
1180     #include <locale.h>
1181     #ifdef HAVE_XLOCALE_H
1182     #include <xlocale.h>
1183     #endif
1184     int main() {
1185       locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
1186       const char *s = "1.0";
1187       char *end;
1188       double d = strtod_l(s, end, loc);
1189       float f = strtof_l(s, end, loc);
1190       freelocale(loc);
1191       return 0;
1192     }''',
1193     args : pre_args,
1194     name : 'strtod has locale support')
1195   pre_args += '-DHAVE_STRTOD_L'
1196 endif
1197
1198 # Check for some linker flags
1199 ld_args_bsymbolic = []
1200 if cc.links('int main() { return 0; }', args : '-Wl,-Bsymbolic', name : 'Bsymbolic')
1201   ld_args_bsymbolic += '-Wl,-Bsymbolic'
1202 endif
1203 ld_args_gc_sections = []
1204 if cc.links('static char unused() { return 5; } int main() { return 0; }',
1205             args : '-Wl,--gc-sections', name : 'gc-sections')
1206   ld_args_gc_sections += '-Wl,--gc-sections'
1207 endif
1208 with_ld_version_script = false
1209 if cc.links('int main() { return 0; }',
1210             args : '-Wl,--version-script=@0@'.format(
1211               join_paths(meson.source_root(), 'build-support/conftest.map')),
1212             name : 'version-script')
1213   with_ld_version_script = true
1214 endif
1215 with_ld_dynamic_list = false
1216 if cc.links('int main() { return 0; }',
1217             args : '-Wl,--dynamic-list=@0@'.format(
1218               join_paths(meson.source_root(), 'build-support/conftest.dyn')),
1219             name : 'dynamic-list')
1220   with_ld_dynamic_list = true
1221 endif
1222
1223 ld_args_build_id = cc.get_supported_link_arguments('-Wl,--build-id=sha1')
1224
1225 # check for dl support
1226 dep_dl = null_dep
1227 if host_machine.system() != 'windows'
1228   if not cc.has_function('dlopen')
1229     dep_dl = cc.find_library('dl')
1230   endif
1231   if cc.has_function('dladdr', dependencies : dep_dl)
1232     # This is really only required for megadrivers
1233     pre_args += '-DHAVE_DLADDR'
1234   endif
1235 endif
1236
1237 if cc.has_function('dl_iterate_phdr')
1238   pre_args += '-DHAVE_DL_ITERATE_PHDR'
1239 elif with_intel_vk
1240   error('Intel "Anvil" Vulkan driver requires the dl_iterate_phdr function')
1241 elif with_dri_i965 and with_shader_cache
1242   error('Intel i965 GL driver requires dl_iterate_phdr when built with shader caching.')
1243 endif
1244
1245 # Determine whether or not the rt library is needed for time functions
1246 if host_machine.system() == 'windows' or cc.has_function('clock_gettime')
1247   dep_clock = null_dep
1248 else
1249   dep_clock = cc.find_library('rt')
1250 endif
1251
1252 # TODO: some of these may be conditional
1253 dep_zlib = dependency('zlib', version : '>= 1.2.3', fallback : ['zlib', 'zlib_dep'])
1254 pre_args += '-DHAVE_ZLIB'
1255 dep_thread = dependency('threads')
1256 if dep_thread.found() and host_machine.system() != 'windows'
1257   pre_args += '-DHAVE_PTHREAD'
1258   if cc.has_function(
1259       'pthread_setaffinity_np',
1260       dependencies : dep_thread,
1261       prefix : '#include <pthread.h>',
1262       args : '-D_GNU_SOURCE')
1263     pre_args += '-DHAVE_PTHREAD_SETAFFINITY'
1264   endif
1265   if cc.has_function(
1266       'pthread_setaffinity_np',
1267       dependencies : dep_thread,
1268       prefix : '#include <pthread_np.h>')
1269     pre_args += '-DPTHREAD_SETAFFINITY_IN_NP_HEADER'
1270   endif
1271 endif
1272 if host_machine.system() != 'windows'
1273   dep_expat = dependency('expat', fallback : ['expat', 'expat_dep'])
1274 else
1275   dep_expat = null_dep
1276 endif
1277 # this only exists on linux so either this is linux and it will be found, or
1278 # it's not linux and wont
1279 dep_m = cc.find_library('m', required : false)
1280
1281 # Check for libdrm. Various drivers have different libdrm version requirements,
1282 # but we always want to use the same version for all libdrm modules. That means
1283 # even if driver foo requires 2.4.0 and driver bar requires 2.4.3, if foo and
1284 # bar are both on use 2.4.3 for both of them
1285 dep_libdrm_amdgpu = null_dep
1286 dep_libdrm_radeon = null_dep
1287 dep_libdrm_nouveau = null_dep
1288 dep_libdrm_intel = null_dep
1289
1290 _drm_amdgpu_ver = '2.4.100'
1291 _drm_radeon_ver = '2.4.71'
1292 _drm_nouveau_ver = '2.4.66'
1293 _drm_intel_ver = '2.4.75'
1294 _drm_ver = '2.4.81'
1295
1296 _libdrm_checks = [
1297   ['intel', with_dri_i915 or with_gallium_i915],
1298   ['amdgpu', with_amd_vk or with_gallium_radeonsi],
1299   ['radeon', (with_gallium_radeonsi or with_dri_r100 or with_dri_r200 or
1300               with_gallium_r300 or with_gallium_r600)],
1301   ['nouveau', (with_gallium_nouveau or with_dri_nouveau)],
1302 ]
1303
1304 # VC4 only needs core libdrm support of this version, not a libdrm_vc4
1305 # library.
1306 if with_gallium_vc4
1307   _drm_ver = '2.4.89'
1308 endif
1309
1310 # etnaviv only needs core libdrm
1311 if with_gallium_etnaviv
1312   _drm_ver = '2.4.89'
1313 endif
1314
1315 # Loop over the enables versions and get the highest libdrm requirement for all
1316 # active drivers.
1317 _drm_blame = ''
1318 foreach d : _libdrm_checks
1319   ver = get_variable('_drm_@0@_ver'.format(d[0]))
1320   if d[1] and ver.version_compare('>' + _drm_ver)
1321     _drm_ver = ver
1322     _drm_blame = d[0]
1323   endif
1324 endforeach
1325 if _drm_blame != ''
1326   message('libdrm @0@ needed because @1@ has the highest requirement'.format(_drm_ver, _drm_blame))
1327 endif
1328
1329 # Then get each libdrm module
1330 foreach d : _libdrm_checks
1331   if d[1]
1332     set_variable(
1333       'dep_libdrm_' + d[0],
1334       dependency('libdrm_' + d[0], version : '>=' + _drm_ver)
1335     )
1336   endif
1337 endforeach
1338
1339 with_gallium_drisw_kms = false
1340 dep_libdrm = dependency(
1341   'libdrm', version : '>=' + _drm_ver,
1342   # GNU/Hurd includes egl_dri2, without drm.
1343   required : (with_dri2 and host_machine.system() != 'gnu') or with_dri3
1344 )
1345 if dep_libdrm.found()
1346   pre_args += '-DHAVE_LIBDRM'
1347   if with_dri_platform == 'drm' and with_dri
1348     with_gallium_drisw_kms = true
1349   endif
1350 endif
1351
1352 llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit']
1353 llvm_optional_modules = ['coroutines']
1354 if with_amd_vk or with_gallium_radeonsi or with_gallium_r600
1355   llvm_modules += ['amdgpu', 'native', 'bitreader', 'ipo']
1356   if with_gallium_r600
1357     llvm_modules += 'asmparser'
1358   endif
1359 endif
1360 if with_gallium_opencl
1361   llvm_modules += [
1362     'all-targets', 'linker', 'coverage', 'instrumentation', 'ipo', 'irreader',
1363     'lto', 'option', 'objcarcopts', 'profiledata',
1364   ]
1365 endif
1366
1367 if with_amd_vk or with_gallium_radeonsi
1368   _llvm_version = '>= 8.0.0'
1369 elif with_gallium_swr
1370   _llvm_version = '>= 6.0.0'
1371 else
1372   _llvm_version = '>= 3.9.0'
1373 endif
1374
1375 _shared_llvm = get_option('shared-llvm')
1376 _llvm = get_option('llvm')
1377
1378 # The cmake method will never find libllvm.so|dylib; this is fine for windows
1379 # because llvm doesn't support libllvm.dll
1380 _llvm_method = 'config-tool'
1381 if (meson.version().version_compare('>= 0.51.0') and
1382     host_machine.system() == 'windows')
1383   _llvm_method = 'cmake'
1384 endif
1385
1386 dep_llvm = null_dep
1387 with_llvm = false
1388 if _llvm != 'false'
1389   dep_llvm = dependency(
1390     'llvm',
1391     version : _llvm_version,
1392     modules : llvm_modules,
1393     optional_modules : llvm_optional_modules,
1394     required : (
1395       with_amd_vk or with_gallium_radeonsi or with_gallium_swr or
1396       with_gallium_opencl or _llvm == 'true'
1397     ),
1398     static : not _shared_llvm,
1399     method : _llvm_method,
1400     fallback : ['llvm', 'dep_llvm'],
1401   )
1402   with_llvm = dep_llvm.found()
1403 endif
1404 if with_llvm
1405   pre_args += '-DLLVM_AVAILABLE'
1406   pre_args += '-DMESA_LLVM_VERSION_STRING="@0@"'.format(dep_llvm.version())
1407
1408   # LLVM can be built without rtti, turning off rtti changes the ABI of C++
1409   # programs, so we need to build all C++ code in mesa without rtti as well to
1410   # ensure that linking works.
1411   #
1412   # In meson 0.51.0 we can use cmake to find LLVM in addittion to meson's
1413   # builtin llvm-config based finder. A new generic variable getter method
1414   # has also been added, so we'll use that if we can, to cover the cmake case.
1415   if dep_llvm.type_name() == 'internal'
1416     _rtti = subproject('llvm').get_variable('has_rtti', true)
1417   elif meson.version().version_compare('>=0.51')
1418     # The CMake finder will return 'ON', the llvm-config will return 'YES'
1419     _rtti = ['ON', 'YES'].contains(dep_llvm.get_variable(cmake : 'LLVM_ENABLE_RTTI', configtool: 'has-rtti'))
1420   else
1421     _rtti = dep_llvm.get_configtool_variable('has-rtti') == 'YES'
1422   endif
1423   if not _rtti
1424     if with_gallium_nouveau
1425       error('The Nouveau driver requires rtti. You either need to turn off nouveau or use an LLVM built with LLVM_ENABLE_RTTI.')
1426     elif with_gallium_opencl
1427       error('The Clover OpenCL state tracker requires rtti, you need to turn off clover or use an LLVM built with LLVM_ENABLE_RTTI.')
1428     endif
1429     if cc.get_id() == 'msvc'
1430       cpp_args += '/GR-'
1431     else
1432       cpp_args += '-fno-rtti'
1433     endif
1434   endif
1435 elif with_amd_vk or with_gallium_radeonsi or with_gallium_swr
1436   error('The following drivers require LLVM: Radv, RadeonSI, SWR. One of these is enabled, but LLVM is disabled.')
1437 elif with_gallium_opencl
1438   error('The OpenCL "Clover" state tracker requires LLVM, but LLVM is disabled.')
1439 endif
1440
1441 if (with_amd_vk or with_gallium_radeonsi or with_gallium_opencl or
1442     (with_gallium_r600 and with_llvm))
1443   dep_elf = dependency('libelf', required : false)
1444   if not dep_elf.found()
1445     dep_elf = cc.find_library('elf')
1446   endif
1447 else
1448   dep_elf = null_dep
1449 endif
1450
1451 dep_glvnd = null_dep
1452 glvnd_has_headers_and_pc_files = false
1453 if with_glvnd
1454   dep_glvnd = dependency('libglvnd', version : '>= 0.2.0')
1455   # GLVND before 1.2 was missing its pkg-config and header files, forcing every
1456   # vendor to provide them and the distro maintainers to resolve the conflict.
1457   glvnd_has_headers_and_pc_files = dep_glvnd.version().version_compare('>= 1.2.0')
1458   pre_args += '-DUSE_LIBGLVND=1'
1459 endif
1460
1461 if with_valgrind != 'false'
1462   dep_valgrind = dependency('valgrind', required : with_valgrind == 'true')
1463   if dep_valgrind.found()
1464     pre_args += '-DHAVE_VALGRIND'
1465   endif
1466 else
1467   dep_valgrind = null_dep
1468 endif
1469
1470 # pthread stubs. Lets not and say we didn't
1471
1472 if host_machine.system() == 'windows'
1473   # Prefer the winflexbison versions, they're much easier to install and have
1474   # better windows support.
1475
1476   prog_flex = find_program('win_flex', required : false)
1477   if prog_flex.found()
1478     # windows compatibility (uses <io.h> instead of <unistd.h> and _isatty,
1479     # _fileno functions)
1480     prog_flex = [prog_flex, '--wincompat']
1481   else
1482     prog_flex = [find_program('lex', 'flex', required : with_any_opengl)]
1483   endif
1484   # Force flex to use const keyword in prototypes, as relies on __cplusplus or
1485   # __STDC__ macro to determine whether it's safe to use const keyword, but
1486   # MSVC never defines __STDC__ unless we disable all MSVC extensions.
1487   prog_flex += '-DYY_USE_CONST='
1488
1489   prog_bison = find_program('win_bison', required : false)
1490   if not prog_bison.found()
1491     prog_bison = find_program('yacc', 'bison', required : with_any_opengl)
1492   endif
1493 else
1494   prog_bison = find_program('bison', required : with_any_opengl)
1495   prog_flex = find_program('flex', required : with_any_opengl)
1496 endif
1497
1498 dep_selinux = null_dep
1499 if get_option('selinux')
1500   dep_selinux = dependency('libselinux')
1501   pre_args += '-DMESA_SELINUX'
1502 endif
1503
1504 if with_libunwind != 'false'
1505   dep_unwind = dependency('libunwind', required : with_libunwind == 'true')
1506   if dep_unwind.found()
1507     pre_args += '-DHAVE_LIBUNWIND'
1508   endif
1509 else
1510   dep_unwind = null_dep
1511 endif
1512
1513 if with_osmesa != 'none'
1514   if with_osmesa == 'gallium' and not with_gallium_softpipe
1515     error('OSMesa gallium requires gallium softpipe or llvmpipe.')
1516   endif
1517   if host_machine.system() == 'windows'
1518     osmesa_lib_name = 'osmesa'
1519   else
1520     osmesa_lib_name = 'OSMesa'
1521   endif
1522   osmesa_bits = get_option('osmesa-bits')
1523   if osmesa_bits != '8'
1524     if with_dri or with_glx != 'disabled'
1525       error('OSMesa bits must be 8 if building glx or dir based drivers')
1526     endif
1527     osmesa_lib_name = osmesa_lib_name + osmesa_bits
1528     pre_args += [
1529       '-DCHAN_BITS=@0@'.format(osmesa_bits), '-DDEFAULT_SOFTWARE_DEPTH_BITS=31'
1530     ]
1531   endif
1532 endif
1533
1534 # TODO: symbol mangling
1535
1536 if with_platform_wayland
1537   dep_wl_scanner = dependency('wayland-scanner', native: true)
1538   prog_wl_scanner = find_program(dep_wl_scanner.get_pkgconfig_variable('wayland_scanner'))
1539   if dep_wl_scanner.version().version_compare('>= 1.15')
1540     wl_scanner_arg = 'private-code'
1541   else
1542     wl_scanner_arg = 'code'
1543   endif
1544   dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.8')
1545   dep_wayland_client = dependency('wayland-client', version : '>=1.11')
1546   dep_wayland_server = dependency('wayland-server', version : '>=1.11')
1547   if with_egl
1548     dep_wayland_egl = dependency('wayland-egl-backend', version : '>= 3')
1549     dep_wayland_egl_headers = declare_dependency(
1550       compile_args : run_command(prog_pkgconfig, ['wayland-egl-backend', '--cflags']).stdout().split())
1551   endif
1552   wayland_dmabuf_xml = join_paths(
1553     dep_wl_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable',
1554     'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'
1555   )
1556   pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED']
1557 endif
1558
1559 dep_x11 = null_dep
1560 dep_xext = null_dep
1561 dep_xdamage = null_dep
1562 dep_xfixes = null_dep
1563 dep_x11_xcb = null_dep
1564 dep_xcb = null_dep
1565 dep_xcb_glx = null_dep
1566 dep_xcb_dri2 = null_dep
1567 dep_xcb_dri3 = null_dep
1568 dep_dri2proto = null_dep
1569 dep_glproto = null_dep
1570 dep_xxf86vm = null_dep
1571 dep_xcb_dri3 = null_dep
1572 dep_xcb_present = null_dep
1573 dep_xcb_sync = null_dep
1574 dep_xcb_xfixes = null_dep
1575 dep_xshmfence = null_dep
1576 dep_xcb_xrandr = null_dep
1577 dep_xlib_xrandr = null_dep
1578 if with_platform_x11
1579   if with_glx == 'xlib' or with_glx == 'gallium-xlib'
1580     dep_x11 = dependency('x11')
1581     dep_xext = dependency('xext')
1582     dep_xcb = dependency('xcb')
1583   elif with_glx == 'dri'
1584     dep_x11 = dependency('x11')
1585     dep_xext = dependency('xext')
1586     dep_xdamage = dependency('xdamage', version : '>= 1.1')
1587     dep_xfixes = dependency('xfixes')
1588     dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1')
1589   endif
1590   if (with_any_vk or with_glx == 'dri' or with_egl or
1591        (with_gallium_vdpau or with_gallium_xvmc or with_gallium_va or
1592         with_gallium_omx != 'disabled'))
1593     dep_xcb = dependency('xcb')
1594     dep_x11_xcb = dependency('x11-xcb')
1595     if with_dri_platform == 'drm' and not dep_libdrm.found()
1596       error('libdrm required for gallium video statetrackers when using x11')
1597     endif
1598   endif
1599   if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm')
1600     dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8')
1601
1602     if with_dri3
1603       pre_args += '-DHAVE_DRI3'
1604       dep_xcb_dri3 = dependency('xcb-dri3')
1605       dep_xcb_present = dependency('xcb-present')
1606       # until xcb-dri3 has been around long enough to make a hard-dependency:
1607       if (dep_xcb_dri3.version().version_compare('>= 1.13') and
1608           dep_xcb_present.version().version_compare('>= 1.13'))
1609         pre_args += '-DHAVE_DRI3_MODIFIERS'
1610       endif
1611       dep_xcb_sync = dependency('xcb-sync')
1612       dep_xshmfence = dependency('xshmfence', version : '>= 1.1')
1613     endif
1614   endif
1615   if with_glx == 'dri' or with_glx == 'gallium-xlib'
1616     dep_glproto = dependency('glproto', version : '>= 1.4.14')
1617   endif
1618   if with_glx == 'dri'
1619     if with_dri_platform == 'drm'
1620       dep_dri2proto = dependency('dri2proto', version : '>= 2.8')
1621       dep_xxf86vm = dependency('xxf86vm')
1622     endif
1623   endif
1624   if (with_egl or (
1625       with_gallium_vdpau or with_gallium_xvmc or with_gallium_xa or
1626       with_gallium_omx != 'disabled'))
1627     dep_xcb_xfixes = dependency('xcb-xfixes')
1628   endif
1629   if with_xlib_lease
1630     dep_xcb_xrandr = dependency('xcb-randr')
1631     dep_xlib_xrandr = dependency('xrandr', version : '>= 1.3')
1632   endif
1633 endif
1634
1635 if get_option('gallium-extra-hud')
1636   pre_args += '-DHAVE_GALLIUM_EXTRA_HUD=1'
1637 endif
1638
1639 _sensors = get_option('lmsensors')
1640 if _sensors != 'false'
1641   dep_lmsensors = cc.find_library('sensors', required : _sensors == 'true')
1642   if dep_lmsensors.found()
1643     pre_args += '-DHAVE_LIBSENSORS=1'
1644   endif
1645 else
1646   dep_lmsensors = null_dep
1647 endif
1648
1649 foreach a : pre_args
1650   add_project_arguments(a, language : ['c', 'cpp'])
1651 endforeach
1652 foreach a : c_args
1653   add_project_arguments(a, language : ['c'])
1654 endforeach
1655 foreach a : cpp_args
1656   add_project_arguments(a, language : ['cpp'])
1657 endforeach
1658
1659 gl_priv_reqs = []
1660
1661 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
1662   gl_priv_reqs += ['x11', 'xext', 'xcb']
1663 elif with_glx == 'dri'
1664   gl_priv_reqs += [
1665     'x11', 'xext', 'xdamage >= 1.1', 'xfixes', 'x11-xcb', 'xcb',
1666     'xcb-glx >= 1.8.1']
1667   if with_dri_platform == 'drm'
1668     gl_priv_reqs += 'xcb-dri2 >= 1.8'
1669     gl_priv_reqs += 'xxf86vm'
1670   endif
1671 endif
1672 if dep_libdrm.found()
1673   gl_priv_reqs += 'libdrm >= 2.4.75'
1674 endif
1675
1676 gl_priv_libs = []
1677 if dep_thread.found()
1678   gl_priv_libs += ['-lpthread', '-pthread']
1679 endif
1680 if dep_m.found()
1681   gl_priv_libs += '-lm'
1682 endif
1683 if dep_dl.found()
1684   gl_priv_libs += '-ldl'
1685 endif
1686
1687 pkg = import('pkgconfig')
1688
1689 prog_nm = find_program('nm', required : false)
1690
1691 # This quirk needs to be applied to sources with functions defined in assembly
1692 # as GCC LTO drops them. See: https://bugs.freedesktop.org/show_bug.cgi?id=109391
1693 gcc_lto_quirk = (cc.get_id() == 'gcc') ? ['-fno-lto'] : []
1694
1695 subdir('include')
1696 subdir('bin')
1697 subdir('src')
1698
1699 # Meson 0.49 and earlier seems to have a bug that fails to evaluate the string-
1700 # formatting below unless the first argument is passed as a variable. This has
1701 # been fixed in Meson 0.50 and beyond, but we need to keep it like this for now
1702 # for backwards compatibility.
1703 _with_opengl_string = with_opengl ? 'yes' : 'no'
1704
1705 lines = ['',
1706   'prefix:          ' + get_option('prefix'),
1707   'libdir:          ' + get_option('libdir'),
1708   'includedir:      ' + get_option('includedir'),
1709   '',
1710   'OpenGL:          @0@ (ES1: @1@ ES2: @2@)'.format(_with_opengl_string,
1711                                                     with_gles1 ? 'yes' : 'no',
1712                                                     with_gles2 ? 'yes' : 'no'),
1713 ]
1714
1715 if with_osmesa != 'none'
1716   lines += ''
1717   suffix = ''
1718   if with_osmesa == 'gallium'
1719     suffix = '(Gallium)'
1720   endif
1721   lines += 'OSMesa:          lib' + osmesa_lib_name + suffix
1722 else
1723   lines += 'OSMesa:          no'
1724 endif
1725
1726 if with_dri
1727   lines += ''
1728   lines += 'DRI platform:    ' + with_dri_platform
1729   if dri_drivers.length() != 0 and dri_drivers != ['']
1730     lines += 'DRI drivers:     ' + ' '.join(dri_drivers)
1731   else
1732     lines += 'DRI drivers:     no'
1733   endif
1734   lines += 'DRI driver dir:  ' + dri_drivers_path
1735 endif
1736
1737 if with_glx != 'disabled'
1738   lines += ''
1739   if with_glx == 'dri'
1740     lines += 'GLX:             DRI-based'
1741   elif with_glx == 'xlib'
1742     lines += 'GLX:             Xlib-based'
1743   elif with_glx == 'gallium-xlib'
1744     lines += 'GLX:             Xlib-based (Gallium)'
1745   else
1746     lines += 'GLX:             ' + with_glx
1747   endif
1748 endif
1749
1750 lines += ''
1751 lines += 'EGL:             ' + (with_egl ? 'yes' : 'no')
1752 if with_egl
1753   egl_drivers = []
1754   if with_dri
1755     egl_drivers += 'builtin:egl_dri2'
1756   endif
1757   if with_dri3
1758     egl_drivers += 'builtin:egl_dri3'
1759   endif
1760   lines += 'EGL drivers:     ' + ' '.join(egl_drivers)
1761 endif
1762 lines += 'GBM:             ' + (with_gbm ? 'yes' : 'no')
1763 if with_platforms
1764   lines += 'EGL/Vulkan/VL platforms:   ' + ' '.join(_platforms)
1765 endif
1766
1767 lines += ''
1768 if with_any_vk
1769   lines += 'Vulkan drivers:  ' + ' '.join(_vulkan_drivers)
1770   lines += 'Vulkan ICD dir:  ' + with_vulkan_icd_dir
1771 else
1772   lines += 'Vulkan drivers:  no'
1773 endif
1774
1775 lines += ''
1776 if with_llvm
1777   lines += 'llvm:            yes'
1778   lines += 'llvm-version:    ' + dep_llvm.version()
1779 else
1780   lines += 'llvm:            no'
1781 endif
1782
1783 lines += ''
1784 if with_gallium
1785   lines += 'Gallium drivers: ' + ' '.join(gallium_drivers)
1786   gallium_st = ['mesa']
1787   if with_gallium_xa
1788     gallium_st += 'xa'
1789   endif
1790   if with_gallium_xvmc
1791     gallium_st += 'xvmc'
1792   endif
1793   if with_gallium_xvmc
1794     gallium_st += 'xvmc'
1795   endif
1796   if with_gallium_vdpau
1797     gallium_st += 'vdpau'
1798   endif
1799   if with_gallium_omx != 'disabled'
1800     gallium_st += 'omx' + with_gallium_omx
1801   endif
1802   if with_gallium_va
1803     gallium_st += 'va'
1804   endif
1805   if with_gallium_st_nine
1806     gallium_st += 'nine'
1807   endif
1808   if with_gallium_opencl
1809     gallium_st += 'clover'
1810   endif
1811   lines += 'Gallium st:      ' + ' '.join(gallium_st)
1812 else
1813   lines += 'Gallium:         no'
1814 endif
1815
1816 lines += 'HUD lmsensors:   ' + (dep_lmsensors.found() ? 'yes' : 'no')
1817
1818 lines += ''
1819 lines += 'Shared-glapi:    ' + (with_shared_glapi ? 'yes' : 'no')
1820
1821
1822 indent = '        '
1823 summary = indent + ('\n' + indent).join(lines)
1824 message('Configuration summary:\n@0@\n'.format(summary))