blob: 58ff3ea9735f28e63a372285c82611f499621e3f [file] [log] [blame]
Dylan Bakerf74cf042018-02-28 10:13:38 -08001# Copyright © 2017-2018 Intel Corporation
Dylan Bakerd1992252017-09-14 17:57:17 -07002
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
Eric Engestrom7983adc2017-10-24 14:57:11 +010021project(
22 'mesa',
23 ['c', 'cpp'],
Dylan Baker3e9533d2017-11-01 11:54:10 -070024 version : run_command(
25 [find_program('python', 'python2', 'python3'), 'bin/meson_get_version.py']
26 ).stdout(),
Eric Engestrom7983adc2017-10-24 14:57:11 +010027 license : 'MIT',
Eric Engestrom3824c8e2018-07-17 15:12:32 +010028 meson_version : '>= 0.45',
29 default_options : ['buildtype=debugoptimized', 'b_ndebug=if-release', 'c_std=c99', 'cpp_std=c++11']
Eric Engestrom7983adc2017-10-24 14:57:11 +010030)
Dylan Bakerd1992252017-09-14 17:57:17 -070031
Dylan Baker65e447c2018-06-11 10:15:15 -070032cc = meson.get_compiler('c')
33cpp = meson.get_compiler('cpp')
34
Dylan Bakerb5f92b62018-03-15 13:30:22 -070035null_dep = dependency('', required : false)
36
Dylan Bakerf74cf042018-02-28 10:13:38 -080037system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'dragonfly', 'linux'].contains(host_machine.system())
38
Dylan Baker32180562017-09-20 20:11:32 -070039# Arguments for the preprocessor, put these in a separate array from the C and
40# C++ (cpp in meson terminology) arguments since they need to be added to the
41# default arguments for both C and C++.
42pre_args = [
43 '-D__STDC_CONSTANT_MACROS',
44 '-D__STDC_FORMAT_MACROS',
45 '-D__STDC_LIMIT_MACROS',
46 '-DVERSION="@0@"'.format(meson.project_version()),
47 '-DPACKAGE_VERSION=VERSION',
48 '-DPACKAGE_BUGREPORT="https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa"',
49]
50
Dylan Bakere915b8d2017-09-28 14:02:51 -070051with_vulkan_icd_dir = get_option('vulkan-icd-dir')
Dylan Bakerd1992252017-09-14 17:57:17 -070052with_tests = get_option('build-tests')
53with_valgrind = get_option('valgrind')
Erik Faye-Lund9e5a5a12017-10-23 20:54:03 +020054with_libunwind = get_option('libunwind')
Dylan Baker32180562017-09-20 20:11:32 -070055with_asm = get_option('asm')
Matt Turnera5abb2d2018-06-06 20:25:09 -070056with_glx_read_only_text = get_option('glx-read-only-text')
Dylan Bakercbbd5bb2017-10-20 21:48:18 -070057with_osmesa = get_option('osmesa')
Dylan Baker5608d0a2018-04-16 15:18:08 -070058with_swr_arches = get_option('swr-arches')
59with_tools = get_option('tools')
Scott D Phillips1f4d2432018-02-07 16:55:24 -080060if with_tools.contains('all')
Eric Anholt162fcda2018-07-12 11:41:37 -070061 with_tools = ['freedreno', 'glsl', 'intel', 'nir', 'nouveau', 'xvmc']
Scott D Phillips1f4d2432018-02-07 16:55:24 -080062endif
Dylan Baker32180562017-09-20 20:11:32 -070063
Dylan Bakerdb978842017-09-28 13:59:04 -070064dri_drivers_path = get_option('dri-drivers-path')
65if dri_drivers_path == ''
66 dri_drivers_path = join_paths(get_option('libdir'), 'dri')
67endif
Dylan Bakerd7235ef2018-01-16 10:36:28 -080068dri_search_path = get_option('dri-search-path')
69if dri_search_path == ''
70 dri_search_path = join_paths(get_option('prefix'), dri_drivers_path)
71endif
Dylan Bakerdb978842017-09-28 13:59:04 -070072
Dylan Baker32180562017-09-20 20:11:32 -070073with_gles1 = get_option('gles1')
74with_gles2 = get_option('gles2')
75with_opengl = get_option('opengl')
76with_any_opengl = with_opengl or with_gles1 or with_gles2
Dylan Bakera47c5252017-09-22 12:55:00 -070077# Only build shared_glapi if at least one OpenGL API is enabled
78with_shared_glapi = get_option('shared-glapi') and with_any_opengl
Dylan Baker32180562017-09-20 20:11:32 -070079
Dylan Baker32180562017-09-20 20:11:32 -070080
81# shared-glapi is required if at least two OpenGL APIs are being built
82if not with_shared_glapi
83 if ((with_gles1 and with_gles2) or (with_gles1 and with_opengl)
84 or (with_gles2 and with_opengl))
85 error('shared-glapi required for building two or more of OpenGL, OpenGL ES 1.x, OpenGL ES 2.x')
86 endif
87endif
88
89# We require OpenGL for OpenGL ES
90if (with_gles1 or with_gles2) and not with_opengl
91 error('building OpenGL ES without OpenGL is not supported.')
92endif
93
Greg Ve30a1652018-03-06 22:16:03 +030094system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'dragonfly', 'linux'].contains(host_machine.system())
95
Dylan Baker32180562017-09-20 20:11:32 -070096_drivers = get_option('dri-drivers')
Dylan Baker5608d0a2018-04-16 15:18:08 -070097if _drivers.contains('auto')
Greg Ve30a1652018-03-06 22:16:03 +030098 if system_has_kms_drm
Jon Turney47729092018-02-02 22:25:48 +000099 # TODO: PPC, Sparc
Dylan Baker18733272017-10-30 10:17:22 -0700100 if ['x86', 'x86_64'].contains(host_machine.cpu_family())
Dylan Baker5608d0a2018-04-16 15:18:08 -0700101 _drivers = ['i915', 'i965', 'r100', 'r200', 'nouveau']
Daniel Stoned7603cb2018-02-27 10:00:24 +0000102 elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
Eric Engestrom03a2e7b2018-05-10 16:12:12 +0100103 _drivers = []
Dylan Baker18733272017-10-30 10:17:22 -0700104 else
Guido Günther05e2fc62018-08-26 22:23:59 +0200105 error('Unknown architecture @0@. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.'.format(
106 host_machine.cpu_family()))
Dylan Baker18733272017-10-30 10:17:22 -0700107 endif
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600108 elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
Jon Turney47729092018-02-02 22:25:48 +0000109 # only swrast would make sense here, but gallium swrast is a much better default
Eric Engestrom03a2e7b2018-05-10 16:12:12 +0100110 _drivers = []
Dylan Baker18733272017-10-30 10:17:22 -0700111 else
Guido Günther05e2fc62018-08-26 22:23:59 +0200112 error('Unknown OS @0@. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.'.format(
113 host_machine.system()))
Dylan Baker18733272017-10-30 10:17:22 -0700114 endif
115endif
Eric Engestrom393abd62018-05-10 16:03:30 +0100116
117with_dri_i915 = _drivers.contains('i915')
118with_dri_i965 = _drivers.contains('i965')
119with_dri_r100 = _drivers.contains('r100')
120with_dri_r200 = _drivers.contains('r200')
121with_dri_nouveau = _drivers.contains('nouveau')
122with_dri_swrast = _drivers.contains('swrast')
123
124with_dri = _drivers.length() != 0 and _drivers != ['']
Dylan Baker32180562017-09-20 20:11:32 -0700125
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700126_drivers = get_option('gallium-drivers')
Dylan Baker5608d0a2018-04-16 15:18:08 -0700127if _drivers.contains('auto')
Greg Ve30a1652018-03-06 22:16:03 +0300128 if system_has_kms_drm
Dylan Baker18733272017-10-30 10:17:22 -0700129 # TODO: PPC, Sparc
130 if ['x86', 'x86_64'].contains(host_machine.cpu_family())
Dylan Baker5608d0a2018-04-16 15:18:08 -0700131 _drivers = [
132 'r300', 'r600', 'radeonsi', 'nouveau', 'virgl', 'svga', 'swrast'
133 ]
Dylan Baker18733272017-10-30 10:17:22 -0700134 elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
Dylan Baker5608d0a2018-04-16 15:18:08 -0700135 _drivers = [
Eric Anholtc4c488a2017-08-25 15:34:22 -0700136 'pl111', 'v3d', 'vc4', 'freedreno', 'etnaviv', 'imx', 'nouveau',
Dylan Baker5608d0a2018-04-16 15:18:08 -0700137 'tegra', 'virgl', 'swrast',
138 ]
Dylan Baker18733272017-10-30 10:17:22 -0700139 else
Guido Günther05e2fc62018-08-26 22:23:59 +0200140 error('Unknown architecture @0@. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.'.format(
141 host_machine.cpu_family()))
Dylan Baker18733272017-10-30 10:17:22 -0700142 endif
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600143 elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
Dylan Baker5608d0a2018-04-16 15:18:08 -0700144 _drivers = ['swrast']
Dylan Baker18733272017-10-30 10:17:22 -0700145 else
Guido Günther05e2fc62018-08-26 22:23:59 +0200146 error('Unknown OS @0@. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.'.format(
147 host_machine.system()))
Dylan Baker18733272017-10-30 10:17:22 -0700148 endif
149endif
Eric Engestroma425db42018-05-10 16:04:26 +0100150with_gallium_pl111 = _drivers.contains('pl111')
151with_gallium_radeonsi = _drivers.contains('radeonsi')
152with_gallium_r300 = _drivers.contains('r300')
153with_gallium_r600 = _drivers.contains('r600')
154with_gallium_nouveau = _drivers.contains('nouveau')
155with_gallium_freedreno = _drivers.contains('freedreno')
156with_gallium_softpipe = _drivers.contains('swrast')
157with_gallium_vc4 = _drivers.contains('vc4')
158with_gallium_v3d = _drivers.contains('v3d')
159with_gallium_etnaviv = _drivers.contains('etnaviv')
160with_gallium_imx = _drivers.contains('imx')
161with_gallium_tegra = _drivers.contains('tegra')
162with_gallium_i915 = _drivers.contains('i915')
163with_gallium_svga = _drivers.contains('svga')
164with_gallium_virgl = _drivers.contains('virgl')
165with_gallium_swr = _drivers.contains('swr')
166
167with_gallium = _drivers.length() != 0 and _drivers != ['']
168
169if with_gallium and system_has_kms_drm
170 _glx = get_option('glx')
171 _egl = get_option('egl')
172 if _glx == 'dri' or _egl == 'true' or (_glx == 'disabled' and _egl != 'false')
173 with_dri = true
Dylan Bakerf74cf042018-02-28 10:13:38 -0800174 endif
Ville Syrjälä22899642017-10-10 01:15:42 +0300175endif
176
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800177_vulkan_drivers = get_option('vulkan-drivers')
Dylan Baker5608d0a2018-04-16 15:18:08 -0700178if _vulkan_drivers.contains('auto')
Greg Ve30a1652018-03-06 22:16:03 +0300179 if system_has_kms_drm
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800180 if host_machine.cpu_family().startswith('x86')
Dylan Baker5608d0a2018-04-16 15:18:08 -0700181 _vulkan_drivers = ['amd', 'intel']
Guido Günther9de34b42018-08-26 22:24:00 +0200182 elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
183 _vulkan_drivers = []
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800184 else
Guido Günther05e2fc62018-08-26 22:23:59 +0200185 error('Unknown architecture @0@. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.'.format(
186 host_machine.cpu_family()))
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800187 endif
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600188 elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800189 # No vulkan driver supports windows or macOS currently
Eric Engestrom03a2e7b2018-05-10 16:12:12 +0100190 _vulkan_drivers = []
Jon Turney47729092018-02-02 22:25:48 +0000191 else
Guido Günther05e2fc62018-08-26 22:23:59 +0200192 error('Unknown OS @0@. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.'.format(
193 host_machine.system()))
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800194 endif
195endif
Eric Engestroma92cdcd2018-05-10 16:05:05 +0100196
197with_intel_vk = _vulkan_drivers.contains('intel')
198with_amd_vk = _vulkan_drivers.contains('amd')
199with_any_vk = _vulkan_drivers.length() != 0 and _vulkan_drivers != ['']
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800200
Dylan Bakere0b037d2017-11-29 17:50:05 -0800201if with_dri_swrast and (with_gallium_softpipe or with_gallium_swr)
Dylan Bakerde24d612017-10-10 14:27:19 -0700202 error('Only one swrast provider can be built')
203endif
Dylan Baker9169dde2017-10-25 16:54:53 -0700204if with_dri_i915 and with_gallium_i915
205 error('Only one i915 provider can be built')
206endif
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700207if with_gallium_imx and not with_gallium_etnaviv
208 error('IMX driver requires etnaviv driver')
209endif
Eric Engestromf0337f02017-12-04 15:06:03 +0000210if with_gallium_pl111 and not with_gallium_vc4
211 error('pl111 driver requires vc4 driver')
212endif
Thierry Reding1755f602014-05-28 00:36:48 +0200213if with_gallium_tegra and not with_gallium_nouveau
214 error('tegra driver requires nouveau driver')
215endif
Dylan Bakerde24d612017-10-10 14:27:19 -0700216
Dylan Baker33627d22017-10-27 17:20:52 -0700217if host_machine.system() == 'darwin'
218 with_dri_platform = 'apple'
219elif ['windows', 'cygwin'].contains(host_machine.system())
220 with_dri_platform = 'windows'
Greg Vc38c60a2018-01-24 21:02:40 +0300221elif system_has_kms_drm
Dylan Baker33627d22017-10-27 17:20:52 -0700222 with_dri_platform = 'drm'
223else
224 # FIXME: haiku doesn't use dri, and xlib doesn't use dri, probably should
225 # assert here that one of those cases has been met.
226 # FIXME: GNU (hurd) ends up here as well, but meson doesn't officially
227 # support Hurd at time of writing (2017/11)
Greg Vc38c60a2018-01-24 21:02:40 +0300228 # FIXME: illumos ends up here as well
Dylan Baker33627d22017-10-27 17:20:52 -0700229 with_dri_platform = 'none'
230endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700231
Dylan Bakerd1992252017-09-14 17:57:17 -0700232_platforms = get_option('platforms')
Dylan Baker5608d0a2018-04-16 15:18:08 -0700233if _platforms.contains('auto')
Greg Vc38c60a2018-01-24 21:02:40 +0300234 if system_has_kms_drm
Dylan Baker5608d0a2018-04-16 15:18:08 -0700235 _platforms = ['x11', 'wayland', 'drm', 'surfaceless']
Jon Turney47729092018-02-02 22:25:48 +0000236 elif ['darwin', 'windows', 'cygwin'].contains(host_machine.system())
Dylan Baker5608d0a2018-04-16 15:18:08 -0700237 _platforms = ['x11', 'surfaceless']
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600238 elif ['haiku'].contains(host_machine.system())
Dylan Baker5608d0a2018-04-16 15:18:08 -0700239 _platforms = ['haiku']
Dylan Baker4b61b072017-11-15 17:31:32 -0800240 else
Guido Günther05e2fc62018-08-26 22:23:59 +0200241 error('Unknown OS @0@. Please pass -Dplatforms to set platforms. Patches gladly accepted to fix this.'.format(
242 host_machine.system()))
Dylan Baker4b61b072017-11-15 17:31:32 -0800243 endif
244endif
Eric Engestrom0ed6a872018-05-10 16:11:29 +0100245
246with_platform_android = _platforms.contains('android')
247with_platform_x11 = _platforms.contains('x11')
248with_platform_wayland = _platforms.contains('wayland')
249with_platform_drm = _platforms.contains('drm')
250with_platform_haiku = _platforms.contains('haiku')
251with_platform_surfaceless = _platforms.contains('surfaceless')
252
253with_platforms = false
254if _platforms.length() != 0 and _platforms != ['']
255 with_platforms = true
Dylan Baker5608d0a2018-04-16 15:18:08 -0700256 egl_native_platform = _platforms[0]
Dylan Bakerd1992252017-09-14 17:57:17 -0700257endif
258
Keith Packard7ab1fff2018-02-09 07:45:58 -0800259_xlib_lease = get_option('xlib-lease')
260if _xlib_lease == 'auto'
261 with_xlib_lease = with_platform_x11 and with_platform_drm
262else
263 with_xlib_lease = _xlib_lease == 'true'
264endif
265
Dylan Baker118a7f02017-11-01 17:42:41 -0700266with_glx = get_option('glx')
267if with_glx == 'auto'
268 if with_dri
269 with_glx = 'dri'
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600270 elif with_platform_haiku
271 with_glx = 'disabled'
Dylan Baker118a7f02017-11-01 17:42:41 -0700272 elif with_gallium
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700273 # Even when building just gallium drivers the user probably wants dri
274 with_glx = 'dri'
Dylan Baker118a7f02017-11-01 17:42:41 -0700275 elif with_platform_x11 and with_any_opengl and not with_any_vk
276 # The automatic behavior should not be to turn on xlib based glx when
277 # building only vulkan drivers
278 with_glx = 'xlib'
279 else
280 with_glx = 'disabled'
281 endif
282endif
Jon Turneyab7aa0f2018-01-15 19:39:46 +0000283if with_glx == 'dri'
284 if with_gallium
285 with_dri = true
286 endif
287endif
Dylan Baker118a7f02017-11-01 17:42:41 -0700288
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700289if not (with_dri or with_gallium or with_glx == 'xlib' or with_glx == 'gallium-xlib')
Dylan Baker118a7f02017-11-01 17:42:41 -0700290 with_gles1 = false
291 with_gles2 = false
292 with_opengl = false
293 with_any_opengl = false
294 with_shared_glapi = false
295endif
296
Eric Engestrom76e8d612018-02-23 17:08:20 +0000297_gbm = get_option('gbm')
298if _gbm == 'auto'
299 with_gbm = system_has_kms_drm and with_dri
Dylan Baker816bf7d12017-09-28 15:53:53 -0700300else
Eric Engestrom76e8d612018-02-23 17:08:20 +0000301 with_gbm = _gbm == 'true'
302endif
303if with_gbm and not system_has_kms_drm
304 error('GBM only supports DRM/KMS platforms')
Dylan Baker816bf7d12017-09-28 15:53:53 -0700305endif
306
Dylan Baker108d2572017-10-18 12:20:43 -0700307_egl = get_option('egl')
308if _egl == 'auto'
Dylan Bakerb8521702018-10-01 12:40:34 -0700309 with_egl = (
310 not ['darwin', 'windows'].contains(host_machine.system()) and
311 with_dri and with_shared_glapi and with_platforms
312 )
Dylan Baker05893312017-10-30 10:27:48 -0700313elif _egl == 'true'
Dylan Baker108d2572017-10-18 12:20:43 -0700314 if not with_dri
315 error('EGL requires dri')
316 elif not with_shared_glapi
317 error('EGL requires shared-glapi')
Eric Engestrom7c4423c2018-06-04 11:26:10 +0100318 elif not with_platforms
Emil Velikov4f2b73d2018-02-23 19:32:01 +0000319 error('No platforms specified, consider -Dplatforms=drm,x11,surfaceless at least')
Dylan Bakerf74cf042018-02-28 10:13:38 -0800320 elif not ['disabled', 'dri'].contains(with_glx)
321 error('EGL requires dri, but a GLX is being built without dri')
Dylan Bakerb8521702018-10-01 12:40:34 -0700322 elif ['darwin', 'windows'].contains(host_machine.system())
323 error('EGL is not available on Windows or MacOS')
Dylan Baker108d2572017-10-18 12:20:43 -0700324 endif
325 with_egl = true
326else
327 with_egl = false
328endif
329
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700330if with_egl and not (with_platform_drm or with_platform_surfaceless)
331 if with_gallium_radeonsi
332 error('RadeonSI requires drm or surfaceless platform when using EGL')
333 endif
334 if with_gallium_virgl
335 error('Virgl requires drm or surfaceless platform when using EGL')
336 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700337endif
338
Dylan Baker8e611872017-10-11 12:49:31 -0700339pre_args += '-DGLX_USE_TLS'
Dylan Bakera47c5252017-09-22 12:55:00 -0700340if with_glx != 'disabled'
Dylan Baker8d3b1212017-10-18 15:47:11 -0700341 if not (with_platform_x11 and with_any_opengl)
Emil Velikov728d1da2018-02-23 19:32:02 +0000342 error('Cannot build GLX support without X11 platform support and at least one OpenGL API')
Dylan Bakera47c5252017-09-22 12:55:00 -0700343 elif with_glx == 'gallium-xlib'
344 if not with_gallium
345 error('Gallium-xlib based GLX requires at least one gallium driver')
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700346 elif not with_gallium_softpipe
347 error('Gallium-xlib based GLX requires softpipe or llvmpipe.')
Dylan Bakera47c5252017-09-22 12:55:00 -0700348 elif with_dri
349 error('gallium-xlib conflicts with any dri driver')
350 endif
Dylan Baker118a7f02017-11-01 17:42:41 -0700351 elif with_glx == 'xlib'
352 if with_dri
353 error('xlib conflicts with any dri driver')
354 endif
Emil Velikov63b95fb2018-02-23 19:32:03 +0000355 elif with_glx == 'dri'
356 if not with_dri
357 error('dri based GLX requires at least one DRI driver')
358 elif not with_shared_glapi
359 error('dri based GLX requires shared-glapi')
360 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700361 endif
362endif
363
364with_glvnd = get_option('glvnd')
Dylan Baker8a36f022017-11-01 10:24:10 -0700365if with_glvnd
366 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
367 error('Cannot build glvnd support for GLX that is not DRI based.')
368 elif with_glx == 'disabled' and not with_egl
369 error('glvnd requires DRI based GLX and/or EGL')
370 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700371endif
372
373# TODO: toggle for this
374with_glx_direct = true
375
Dylan Bakerd1992252017-09-14 17:57:17 -0700376if with_vulkan_icd_dir == ''
377 with_vulkan_icd_dir = join_paths(get_option('datadir'), 'vulkan/icd.d')
378endif
379
Dylan Baker50c28df2017-09-29 17:53:01 -0700380with_dri2 = (with_dri or with_any_vk) and with_dri_platform == 'drm'
Eric Engestrom248c5932018-02-23 17:08:45 +0000381_dri3 = get_option('dri3')
382if _dri3 == 'auto'
Eric Engestrom57b0ccd2017-12-07 16:04:14 +0000383 with_dri3 = system_has_kms_drm and with_dri2
Dylan Baker50c28df2017-09-29 17:53:01 -0700384else
Eric Engestrom248c5932018-02-23 17:08:45 +0000385 with_dri3 = _dri3 == 'true'
Dylan Baker50c28df2017-09-29 17:53:01 -0700386endif
387
388if with_any_vk and (with_platform_x11 and not with_dri3)
389 error('Vulkan drivers require dri3 for X11 support')
390endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700391if with_dri or with_gallium
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600392 if with_glx == 'disabled' and not with_egl and not with_platform_haiku
Dylan Bakera47c5252017-09-22 12:55:00 -0700393 error('building dri or gallium drivers require at least one window system')
394 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700395endif
396
Greg V53f91312018-01-24 21:02:42 +0300397prog_pkgconfig = find_program('pkg-config')
398
Dylan Baker68076b82017-10-30 14:04:21 -0700399_vdpau = get_option('gallium-vdpau')
Eric Engestrom992af0a2017-12-07 16:02:02 +0000400if not system_has_kms_drm
401 if _vdpau == 'true'
402 error('VDPAU state tracker can only be build on unix-like OSes.')
Dylan Baker68076b82017-10-30 14:04:21 -0700403 else
Eric Engestrom992af0a2017-12-07 16:02:02 +0000404 _vdpau = 'false'
Dylan Baker68076b82017-10-30 14:04:21 -0700405 endif
Eric Engestrom992af0a2017-12-07 16:02:02 +0000406elif not with_platform_x11
407 if _vdpau == 'true'
Dylan Baker68076b82017-10-30 14:04:21 -0700408 error('VDPAU state tracker requires X11 support.')
Eric Engestrom992af0a2017-12-07 16:02:02 +0000409 else
410 _vdpau = 'false'
Dylan Baker68076b82017-10-30 14:04:21 -0700411 endif
Eric Engestrom992af0a2017-12-07 16:02:02 +0000412elif not (with_gallium_r300 or with_gallium_r600 or with_gallium_radeonsi or
413 with_gallium_nouveau)
414 if _vdpau == 'true'
415 error('VDPAU state tracker requires at least one of the following gallium drivers: r300, r600, radeonsi, nouveau.')
416 else
417 _vdpau = 'false'
418 endif
Dylan Baker68076b82017-10-30 14:04:21 -0700419endif
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700420dep_vdpau = null_dep
Dylan Bakerd9a80082018-06-21 08:28:36 -0700421with_gallium_vdpau = false
422if _vdpau != 'false'
423 dep_vdpau = dependency('vdpau', version : '>= 1.1', required : _vdpau == 'true')
424 if dep_vdpau.found()
425 dep_vdpau = declare_dependency(
426 compile_args : run_command(prog_pkgconfig, ['vdpau', '--cflags']).stdout().split()
427 )
428 with_gallium_vdpau = true
429 endif
Dylan Baker68076b82017-10-30 14:04:21 -0700430endif
431
432if with_gallium_vdpau
433 pre_args += '-DHAVE_ST_VDPAU'
434endif
435vdpau_drivers_path = get_option('vdpau-libs-path')
436if vdpau_drivers_path == ''
437 vdpau_drivers_path = join_paths(get_option('libdir'), 'vdpau')
438endif
439
Dylan Baker22a817a2017-10-30 14:32:30 -0700440_xvmc = get_option('gallium-xvmc')
Eric Engestrom724916c2017-12-07 16:02:29 +0000441if not system_has_kms_drm
442 if _xvmc == 'true'
443 error('XVMC state tracker can only be build on unix-like OSes.')
Dylan Baker22a817a2017-10-30 14:32:30 -0700444 else
Eric Engestrom724916c2017-12-07 16:02:29 +0000445 _xvmc = 'false'
Dylan Baker22a817a2017-10-30 14:32:30 -0700446 endif
Eric Engestrom724916c2017-12-07 16:02:29 +0000447elif not with_platform_x11
448 if _xvmc == 'true'
Dylan Baker22a817a2017-10-30 14:32:30 -0700449 error('XVMC state tracker requires X11 support.')
Eric Engestrom724916c2017-12-07 16:02:29 +0000450 else
451 _xvmc = 'false'
Dylan Baker22a817a2017-10-30 14:32:30 -0700452 endif
Eric Engestrom724916c2017-12-07 16:02:29 +0000453elif not (with_gallium_r600 or with_gallium_nouveau)
454 if _xvmc == 'true'
455 error('XVMC state tracker requires at least one of the following gallium drivers: r600, nouveau.')
456 else
457 _xvmc = 'false'
458 endif
Dylan Baker22a817a2017-10-30 14:32:30 -0700459endif
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700460dep_xvmc = null_dep
Dylan Bakera6943bb2018-06-21 08:34:05 -0700461with_gallium_xvmc = false
Dylan Bakerced3df52018-06-22 10:08:47 -0700462if _xvmc != 'false'
Dylan Bakera6943bb2018-06-21 08:34:05 -0700463 dep_xvmc = dependency('xvmc', version : '>= 1.0.6', required : _xvmc == 'true')
464 with_gallium_xvmc = dep_xvmc.found()
Dylan Baker22a817a2017-10-30 14:32:30 -0700465endif
466
467xvmc_drivers_path = get_option('xvmc-libs-path')
468if xvmc_drivers_path == ''
469 xvmc_drivers_path = get_option('libdir')
470endif
471
Dylan Baker1d36dc62017-10-30 15:23:06 -0700472_omx = get_option('gallium-omx')
Eric Engestrom86168ed2017-12-07 16:03:04 +0000473if not system_has_kms_drm
Dylan Baker34e852d2018-03-06 10:11:38 -0800474 if ['auto', 'disabled'].contains(_omx)
Gurkirpal Singhbb5e27f2018-01-20 05:12:06 +0530475 _omx = 'disabled'
Dylan Baker34e852d2018-03-06 10:11:38 -0800476 else
477 error('OMX state tracker can only be built on unix-like OSes.')
Dylan Baker1d36dc62017-10-30 15:23:06 -0700478 endif
Eric Engestrom86168ed2017-12-07 16:03:04 +0000479elif not (with_platform_x11 or with_platform_drm)
Dylan Baker34e852d2018-03-06 10:11:38 -0800480 if ['auto', 'disabled'].contains(_omx)
Gurkirpal Singhbb5e27f2018-01-20 05:12:06 +0530481 _omx = 'disabled'
Dylan Baker34e852d2018-03-06 10:11:38 -0800482 else
483 error('OMX state tracker requires X11 or drm platform support.')
Dylan Baker1d36dc62017-10-30 15:23:06 -0700484 endif
Eric Engestrom86168ed2017-12-07 16:03:04 +0000485elif not (with_gallium_r600 or with_gallium_radeonsi or with_gallium_nouveau)
Dylan Baker34e852d2018-03-06 10:11:38 -0800486 if ['auto', 'disabled'].contains(_omx)
Gurkirpal Singhbb5e27f2018-01-20 05:12:06 +0530487 _omx = 'disabled'
Dylan Baker34e852d2018-03-06 10:11:38 -0800488 else
489 error('OMX state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau.')
Eric Engestrom86168ed2017-12-07 16:03:04 +0000490 endif
Eric Engestrom86168ed2017-12-07 16:03:04 +0000491endif
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700492with_gallium_omx = _omx
493dep_omx = null_dep
Gurkirpal Singhe2afa152018-01-20 05:37:53 +0530494dep_omx_other = []
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100495if ['auto', 'bellagio'].contains(_omx)
Dylan Baker34e852d2018-03-06 10:11:38 -0800496 dep_omx = dependency(
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100497 'libomxil-bellagio', required : _omx == 'bellagio'
Dylan Baker34e852d2018-03-06 10:11:38 -0800498 )
499 if dep_omx.found()
Dylan Baker34e852d2018-03-06 10:11:38 -0800500 with_gallium_omx = 'bellagio'
501 endif
502endif
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100503if ['auto', 'tizonia'].contains(_omx)
504 if with_dri and with_egl
Dylan Baker34e852d2018-03-06 10:11:38 -0800505 dep_omx = dependency(
506 'libtizonia', version : '>= 0.10.0',
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100507 required : _omx == 'tizonia',
Dylan Baker34e852d2018-03-06 10:11:38 -0800508 )
509 dep_omx_other = [
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100510 dependency('libtizplatform', required : _omx == 'tizonia'),
511 dependency('tizilheaders', required : _omx == 'tizonia'),
Dylan Baker34e852d2018-03-06 10:11:38 -0800512 ]
513 if dep_omx.found() and dep_omx_other[0].found() and dep_omx_other[1].found()
Dylan Baker34e852d2018-03-06 10:11:38 -0800514 with_gallium_omx = 'tizonia'
Dylan Baker34e852d2018-03-06 10:11:38 -0800515 endif
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100516 elif _omx == 'tizonia'
517 error('OMX-Tizonia state tracker requires dri and egl')
Dylan Baker34e852d2018-03-06 10:11:38 -0800518 endif
Dylan Baker1d36dc62017-10-30 15:23:06 -0700519endif
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100520if _omx == 'auto'
521 with_gallium_omx = 'disabled'
522else
523 with_gallium_omx = _omx
524endif
Dylan Baker1d36dc62017-10-30 15:23:06 -0700525
Mathias Fröhlich880c1712018-03-16 06:34:35 +0100526pre_args += [
527 '-DENABLE_ST_OMX_BELLAGIO=' + (with_gallium_omx == 'bellagio' ? '1' : '0'),
528 '-DENABLE_ST_OMX_TIZONIA=' + (with_gallium_omx == 'tizonia' ? '1' : '0'),
529]
530
531
Dylan Baker1d36dc62017-10-30 15:23:06 -0700532omx_drivers_path = get_option('omx-libs-path')
Mathias Fröhlich880c1712018-03-16 06:34:35 +0100533
Dylan Baker34e852d2018-03-06 10:11:38 -0800534if with_gallium_omx != 'disabled'
Dylan Baker1d36dc62017-10-30 15:23:06 -0700535 # Figure out where to put the omx driver.
536 # FIXME: this could all be vastly simplified by adding a 'defined_variable'
537 # argument to meson's get_pkgconfig_variable method.
538 if omx_drivers_path == ''
539 _omx_libdir = dep_omx.get_pkgconfig_variable('libdir')
540 _omx_drivers_dir = dep_omx.get_pkgconfig_variable('pluginsdir')
541 if _omx_libdir == get_option('libdir')
542 omx_drivers_path = _omx_drivers_dir
543 else
544 _omx_base_dir = []
545 # This will fail on windows. Does OMX run on windows?
546 _omx_libdir = _omx_libdir.split('/')
547 _omx_drivers_dir = _omx_drivers_dir.split('/')
548 foreach o : _omx_drivers_dir
549 if not _omx_libdir.contains(o)
550 _omx_base_dir += o
551 endif
552 endforeach
553 omx_drivers_path = join_paths(get_option('libdir'), _omx_base_dir)
554 endif
555 endif
556endif
Dylan Baker1d36dc62017-10-30 15:23:06 -0700557
Dylan Baker5a785d52017-10-30 15:49:37 -0700558_va = get_option('gallium-va')
Eric Engestromfa5d6162017-12-07 16:03:22 +0000559if not system_has_kms_drm
560 if _va == 'true'
561 error('VA state tracker can only be built on unix-like OSes.')
Dylan Baker5a785d52017-10-30 15:49:37 -0700562 else
Eric Engestromfa5d6162017-12-07 16:03:22 +0000563 _va = 'false'
Dylan Baker5a785d52017-10-30 15:49:37 -0700564 endif
Eric Engestromfa5d6162017-12-07 16:03:22 +0000565elif not (with_platform_x11 or with_platform_drm)
566 if _va == 'true'
Dylan Baker5a785d52017-10-30 15:49:37 -0700567 error('VA state tracker requires X11 or drm or wayland platform support.')
Eric Engestromfa5d6162017-12-07 16:03:22 +0000568 else
569 _va = 'false'
Dylan Baker5a785d52017-10-30 15:49:37 -0700570 endif
Eric Engestromfa5d6162017-12-07 16:03:22 +0000571elif not (with_gallium_r600 or with_gallium_radeonsi or with_gallium_nouveau)
572 if _va == 'true'
573 error('VA state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau.')
574 else
575 _va = 'false'
576 endif
Dylan Baker5a785d52017-10-30 15:49:37 -0700577endif
Dylan Baker94cf3972018-06-21 08:35:03 -0700578with_gallium_va = false
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700579dep_va = null_dep
Dylan Baker94cf3972018-06-21 08:35:03 -0700580if _va != 'false'
581 dep_va = dependency('libva', version : '>= 0.38.0', required : _va == 'true')
582 if dep_va.found()
583 dep_va_headers = declare_dependency(
584 compile_args : run_command(prog_pkgconfig, ['libva', '--cflags']).stdout().split()
585 )
586 with_gallium_va = true
587 endif
Dylan Baker5a785d52017-10-30 15:49:37 -0700588endif
589
590va_drivers_path = get_option('va-libs-path')
591if va_drivers_path == ''
592 va_drivers_path = join_paths(get_option('libdir'), 'dri')
593endif
594
Dylan Baker0ba909f2017-10-30 17:40:30 -0700595_xa = get_option('gallium-xa')
Eric Engestrom2f0db332017-12-07 16:03:40 +0000596if not system_has_kms_drm
597 if _xa == 'true'
598 error('XA state tracker can only be built on unix-like OSes.')
Dylan Baker0ba909f2017-10-30 17:40:30 -0700599 else
Eric Engestrom2f0db332017-12-07 16:03:40 +0000600 _xa = 'false'
Dylan Baker0ba909f2017-10-30 17:40:30 -0700601 endif
Eric Engestrom2f0db332017-12-07 16:03:40 +0000602elif not (with_gallium_nouveau or with_gallium_freedreno or with_gallium_i915
603 or with_gallium_svga)
604 if _xa == 'true'
Dylan Baker0ba909f2017-10-30 17:40:30 -0700605 error('XA state tracker requires at least one of the following gallium drivers: nouveau, freedreno, i915, svga.')
Eric Engestrom2f0db332017-12-07 16:03:40 +0000606 else
607 _xa = 'false'
Dylan Baker0ba909f2017-10-30 17:40:30 -0700608 endif
Dylan Baker0ba909f2017-10-30 17:40:30 -0700609endif
Eric Engestrom2f0db332017-12-07 16:03:40 +0000610with_gallium_xa = _xa != 'false'
Dylan Baker0ba909f2017-10-30 17:40:30 -0700611
Dylan Baker6b4c7042017-11-13 17:58:51 -0800612d3d_drivers_path = get_option('d3d-drivers-path')
613if d3d_drivers_path == ''
614 d3d_drivers_path = join_paths(get_option('libdir'), 'd3d')
615endif
616
617with_gallium_st_nine = get_option('gallium-nine')
618if with_gallium_st_nine
619 if not with_gallium_softpipe
620 error('The nine state tracker requires gallium softpipe/llvmpipe.')
621 elif not (with_gallium_radeonsi or with_gallium_nouveau or with_gallium_r600
622 or with_gallium_r300 or with_gallium_svga or with_gallium_i915)
623 error('The nine state tracker requires at least on non-swrast gallium driver.')
624 endif
625 if not with_dri3
626 error('Using nine with wine requires dri3')
627 endif
628endif
629
Dylan Baker34bbb242018-06-07 11:13:34 -0700630if get_option('power8') != 'false'
631 if host_machine.cpu_family() == 'ppc64le'
632 if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.8')
633 error('Altivec is not supported with gcc version < 4.8.')
634 endif
635 if cc.compiles('''
636 #include <altivec.h>
637 int main() {
638 vector unsigned char r;
639 vector unsigned int v = vec_splat_u32 (1);
640 r = __builtin_vec_vgbbd ((vector unsigned char) v);
641 return 0;
642 }''',
643 args : '-mpower8-vector',
644 name : 'POWER8 intrinsics')
645 pre_args += ['-D_ARCH_PWR8', '-mpower8-vector']
646 elif get_option('power8') == 'true'
647 error('POWER8 intrinsic support required but not found.')
648 endif
649 endif
650endif
651
Dylan Baker42ea0632017-12-08 15:26:00 -0800652_opencl = get_option('gallium-opencl')
Dylan Baker21bca272018-01-08 17:31:55 -0800653if _opencl != 'disabled'
Dylan Baker42ea0632017-12-08 15:26:00 -0800654 if not with_gallium
655 error('OpenCL Clover implementation requires at least one gallium driver.')
656 endif
657
Dylan Baker42ea0632017-12-08 15:26:00 -0800658 dep_clc = dependency('libclc')
659 with_gallium_opencl = true
660 with_opencl_icd = _opencl == 'icd'
661else
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700662 dep_clc = null_dep
Dylan Baker42ea0632017-12-08 15:26:00 -0800663 with_gallium_opencl = false
664 with_gallium_icd = false
665endif
666
Dylan Baker108d2572017-10-18 12:20:43 -0700667gl_pkgconfig_c_flags = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700668if with_platform_x11
Dylan Bakerf74cf042018-02-28 10:13:38 -0800669 if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm')
Dylan Baker50c28df2017-09-29 17:53:01 -0700670 pre_args += '-DHAVE_X11_PLATFORM'
671 endif
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700672 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
Dylan Baker118a7f02017-11-01 17:42:41 -0700673 pre_args += '-DUSE_XSHM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700674 else
675 pre_args += '-DGLX_INDIRECT_RENDERING'
676 if with_glx_direct
677 pre_args += '-DGLX_DIRECT_RENDERING'
678 endif
679 if with_dri_platform == 'drm'
680 pre_args += '-DGLX_USE_DRM'
Dylan Baker569628d2017-10-27 21:08:07 -0700681 elif with_dri_platform == 'apple'
682 pre_args += '-DGLX_USE_APPLEGL'
Jon Turney9cdd41b2017-11-23 13:40:06 +0000683 elif with_dri_platform == 'windows'
684 pre_args += '-DGLX_USE_WINDOWSGL'
Dylan Baker50c28df2017-09-29 17:53:01 -0700685 endif
686 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700687else
688 pre_args += '-DMESA_EGL_NO_X11_HEADERS'
689 gl_pkgconfig_c_flags += '-DMESA_EGL_NO_X11_HEADERS'
690endif
691if with_platform_drm
692 if with_egl and not with_gbm
693 error('EGL drm platform requires gbm')
694 endif
695 pre_args += '-DHAVE_DRM_PLATFORM'
696endif
697if with_platform_surfaceless
698 pre_args += '-DHAVE_SURFACELESS_PLATFORM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700699endif
Eric Engestromc5ec1552017-10-24 16:08:15 +0100700if with_platform_android
701 dep_android = [
702 dependency('cutils'),
703 dependency('hardware'),
704 dependency('sync'),
705 ]
706 pre_args += '-DHAVE_ANDROID_PLATFORM'
707endif
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600708if with_platform_haiku
709 pre_args += '-DHAVE_HAIKU_PLATFORM'
710endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700711
Dylan Baker5a8f8242018-08-14 09:33:07 -0700712prog_python = import('python3').find_python()
Dylan Baker52194ae2018-08-14 09:31:41 -0700713has_mako = run_command(
714 prog_python, '-c',
715 '''
716from distutils.version import StrictVersion
717import mako
718assert StrictVersion(mako.__version__) > StrictVersion("0.8.0")
719 ''')
Dylan Baker9342a7d2017-09-28 10:48:30 -0700720if has_mako.returncode() != 0
Dylan Baker52194ae2018-08-14 09:31:41 -0700721 error('Python (3.x) mako module >= 0.8.0 required to build mesa.')
Dylan Baker9342a7d2017-09-28 10:48:30 -0700722endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700723
Dylan Bakerd1992252017-09-14 17:57:17 -0700724if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6')
Eric Engestrom1262e822017-09-29 15:25:18 +0100725 error('When using GCC, version 4.4.6 or later is required.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700726endif
727
Eric Engestrom1e6f9ea2017-11-06 17:18:06 +0000728# Define DEBUG for debug builds only (debugoptimized is not included on this one)
729if get_option('buildtype') == 'debug'
Dylan Bakerd1992252017-09-14 17:57:17 -0700730 pre_args += '-DDEBUG'
731endif
732
Dylan Baker673dda82017-09-20 11:53:29 -0700733if get_option('shader-cache')
734 pre_args += '-DENABLE_SHADER_CACHE'
735elif with_amd_vk
736 error('Radv requires shader cache support')
737endif
738
Dylan Bakerd1992252017-09-14 17:57:17 -0700739# Check for GCC style builtins
740foreach b : ['bswap32', 'bswap64', 'clz', 'clzll', 'ctz', 'expect', 'ffs',
741 'ffsll', 'popcount', 'popcountll', 'unreachable']
742 if cc.has_function(b)
743 pre_args += '-DHAVE___BUILTIN_@0@'.format(b.to_upper())
744 endif
745endforeach
746
Dylan Baker673dda82017-09-20 11:53:29 -0700747# check for GCC __attribute__
Dylan Bakerd1992252017-09-14 17:57:17 -0700748foreach a : ['const', 'flatten', 'malloc', 'pure', 'unused',
749 'warn_unused_result', 'weak',]
750 if cc.compiles('int foo(void) __attribute__((@0@));'.format(a),
751 name : '__attribute__((@0@))'.format(a))
752 pre_args += '-DHAVE_FUNC_ATTRIBUTE_@0@'.format(a.to_upper())
753 endif
754endforeach
755if cc.compiles('int foo(const char *p, ...) __attribute__((format(printf, 1, 2)));',
756 name : '__attribute__((format(...)))')
757 pre_args += '-DHAVE_FUNC_ATTRIBUTE_FORMAT'
758endif
759if cc.compiles('struct __attribute__((packed)) foo { int bar; };',
760 name : '__attribute__((packed))')
761 pre_args += '-DHAVE_FUNC_ATTRIBUTE_PACKED'
762endif
763if cc.compiles('int *foo(void) __attribute__((returns_nonnull));',
764 name : '__attribute__((returns_nonnull))')
Marc Dietrich911ca582018-01-23 15:49:43 +0100765 pre_args += '-DHAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL'
Dylan Bakerd1992252017-09-14 17:57:17 -0700766endif
767if cc.compiles('''int foo_def(void) __attribute__((visibility("default")));
768 int foo_hid(void) __attribute__((visibility("hidden")));
769 int foo_int(void) __attribute__((visibility("internal")));
770 int foo_pro(void) __attribute__((visibility("protected")));''',
771 name : '__attribute__((visibility(...)))')
Marc Dietrich911ca582018-01-23 15:49:43 +0100772 pre_args += '-DHAVE_FUNC_ATTRIBUTE_VISIBILITY'
Dylan Bakerd1992252017-09-14 17:57:17 -0700773endif
774if cc.compiles('int foo(void) { return 0; } int bar(void) __attribute__((alias("foo")));',
775 name : '__attribute__((alias(...)))')
776 pre_args += '-DHAVE_FUNC_ATTRIBUTE_ALIAS'
777endif
Jason Ekstrand0c49aa02017-08-16 17:16:45 -0700778if cc.compiles('int foo(void) __attribute__((__noreturn__));',
779 name : '__attribute__((__noreturn__))')
780 pre_args += '-DHAVE_FUNC_ATTRIBUTE_NORETURN'
781endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700782
783# TODO: this is very incomplete
Jon Turneydbe36e32017-11-23 13:42:00 +0000784if ['linux', 'cygwin'].contains(host_machine.system())
Dylan Bakerd1992252017-09-14 17:57:17 -0700785 pre_args += '-D_GNU_SOURCE'
786endif
787
Dylan Baker8e5988e2018-03-22 11:35:08 -0700788# Check for generic C arguments
Dylan Bakerd1992252017-09-14 17:57:17 -0700789c_args = []
Dylan Baker9c2a95b2018-11-09 13:27:56 -0800790foreach a : ['-Werror=implicit-function-declaration',
Kenneth Graunkef91f9ba2018-01-30 01:32:07 -0800791 '-Werror=missing-prototypes', '-Werror=return-type',
792 '-fno-math-errno',
Dylan Bakerd1992252017-09-14 17:57:17 -0700793 '-fno-trapping-math', '-Qunused-arguments']
794 if cc.has_argument(a)
795 c_args += a
796 endif
797endforeach
Eric Engestrom1a37a802018-09-21 11:37:53 +0100798
Eric Engestrom97ae5a82018-09-21 11:42:38 +0100799foreach a : ['missing-field-initializers', 'format-truncation']
Eric Engestrom1a37a802018-09-21 11:37:53 +0100800 if cc.has_argument('-W' + a)
801 c_args += '-Wno-' + a
802 endif
803endforeach
Gert Wollny81e5bf32018-06-11 18:24:39 +0200804
Dylan Bakerd1992252017-09-14 17:57:17 -0700805c_vis_args = []
806if cc.has_argument('-fvisibility=hidden')
807 c_vis_args += '-fvisibility=hidden'
808endif
809
Dylan Baker8e5988e2018-03-22 11:35:08 -0700810# Check for generic C++ arguments
Dylan Baker8e5988e2018-03-22 11:35:08 -0700811cpp_args = []
Dylan Baker9c2a95b2018-11-09 13:27:56 -0800812foreach a : ['-Werror=return-type',
Kenneth Graunkef91f9ba2018-01-30 01:32:07 -0800813 '-fno-math-errno', '-fno-trapping-math',
Dylan Baker8e5988e2018-03-22 11:35:08 -0700814 '-Qunused-arguments']
815 if cpp.has_argument(a)
816 cpp_args += a
817 endif
818endforeach
819
Marc Dietrichd93fabb2017-11-29 22:25:05 +0100820# For some reason, the test for -Wno-foo always succeeds with gcc, even if the
821# option is not supported. Hence, check for -Wfoo instead.
Gert Wollny81e5bf32018-06-11 18:24:39 +0200822
Eric Engestrom97ae5a82018-09-21 11:42:38 +0100823foreach a : ['non-virtual-dtor', 'missing-field-initializers', 'format-truncation']
Gert Wollny81e5bf32018-06-11 18:24:39 +0200824 if cpp.has_argument('-W' + a)
825 cpp_args += '-Wno-' + a
826 endif
827endforeach
Marc Dietrichd93fabb2017-11-29 22:25:05 +0100828
829no_override_init_args = []
830foreach a : ['override-init', 'initializer-overrides']
831 if cc.has_argument('-W' + a)
832 no_override_init_args += '-Wno-' + a
833 endif
834endforeach
835
Dylan Bakerd1992252017-09-14 17:57:17 -0700836cpp_vis_args = []
837if cpp.has_argument('-fvisibility=hidden')
838 cpp_vis_args += '-fvisibility=hidden'
839endif
840
841# Check for C and C++ arguments for MSVC2013 compatibility. These are only used
842# in parts of the mesa code base that need to compile with old versions of
843# MSVC, mainly common code
844c_msvc_compat_args = []
845cpp_msvc_compat_args = []
846foreach a : ['-Werror=pointer-arith', '-Werror=vla']
847 if cc.has_argument(a)
848 c_msvc_compat_args += a
849 endif
850 if cpp.has_argument(a)
851 cpp_msvc_compat_args += a
852 endif
853endforeach
854
Dylan Baker84486f62017-11-15 16:09:22 -0800855if host_machine.cpu_family().startswith('x86')
Scott D Phillips0b8d38b2018-01-24 11:24:12 -0800856 pre_args += '-DUSE_SSE41'
Dylan Baker84486f62017-11-15 16:09:22 -0800857 with_sse41 = true
858 sse41_args = ['-msse4.1']
859
860 # GCC on x86 (not x86_64) with -msse* assumes a 16 byte aligned stack, but
861 # that's not guaranteed
862 if host_machine.cpu_family() == 'x86'
863 sse41_args += '-mstackrealign'
864 endif
865else
866 with_sse41 = false
867 sse41_args = []
868endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700869
870# Check for GCC style atomics
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700871dep_atomic = null_dep
Thierry Reding498faea2018-02-23 14:13:27 +0100872
Matt Turnerb29b5a82018-06-11 14:56:26 -0700873if cc.compiles('''#include <stdint.h>
874 int main() {
875 struct {
876 uint64_t *v;
877 } x;
Andrew Galante9d547a72018-06-11 15:03:36 -0700878 return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) &
879 (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL);
880
Matt Turnerb29b5a82018-06-11 14:56:26 -0700881 }''',
Dylan Bakerd1992252017-09-14 17:57:17 -0700882 name : 'GCC atomic builtins')
883 pre_args += '-DUSE_GCC_ATOMIC_BUILTINS'
Thierry Reding498faea2018-02-23 14:13:27 +0100884
885 # Not all atomic calls can be turned into lock-free instructions, in which
886 # GCC will make calls into the libatomic library. Check whether we need to
887 # link with -latomic.
888 #
889 # This can happen for 64-bit atomic operations on 32-bit architectures such
890 # as ARM.
891 if not cc.links('''#include <stdint.h>
892 int main() {
Nicolas Boichat54ba73e2018-04-05 09:33:09 +0800893 struct {
894 uint64_t *v;
895 } x;
Andrew Galante9d547a72018-06-11 15:03:36 -0700896 return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) &
897 (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL);
Thierry Reding498faea2018-02-23 14:13:27 +0100898 }''',
899 name : 'GCC atomic builtins required -latomic')
900 dep_atomic = cc.find_library('atomic')
901 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700902endif
903if not cc.links('''#include <stdint.h>
904 uint64_t v;
905 int main() {
906 return __sync_add_and_fetch(&v, (uint64_t)1);
907 }''',
Dylan Baker4eab98b2018-11-09 12:56:00 -0800908 dependencies : dep_atomic,
Dylan Bakerd1992252017-09-14 17:57:17 -0700909 name : 'GCC 64bit atomics')
Dylan Baker4eab98b2018-11-09 12:56:00 -0800910 pre_args += '-DMISSING_64BIT_ATOMICS'
Dylan Bakerd1992252017-09-14 17:57:17 -0700911endif
912
Dylan Bakerd1992252017-09-14 17:57:17 -0700913# TODO: shared/static? Is this even worth doing?
914
Dylan Bakerc267f462018-06-07 08:38:07 -0700915# When cross compiling we generally need to turn off the use of assembly,
916# because mesa's assembly relies on building an executable for the host system,
917# and running it to get information about struct sizes. There is at least one
918# case of cross compiling where we can use asm, and that's x86_64 -> x86 when
919# host OS == build OS, since in that case the build machine can run the host's
920# binaries.
Dylan Baker2d62fc02017-11-15 16:53:40 -0800921if meson.is_cross_build()
Dylan Bakerc267f462018-06-07 08:38:07 -0700922 if build_machine.system() != host_machine.system()
923 # TODO: It may be possible to do this with an exe_wrapper (like wine).
924 message('Cross compiling from one OS to another, disabling assembly.')
925 with_asm = false
Dylan Baker8f2421d2018-06-07 10:48:38 -0700926 elif not (build_machine.cpu_family().startswith('x86') and host_machine.cpu_family() == 'x86')
927 # FIXME: Gentoo always sets -m32 for x86_64 -> x86 builds, resulting in an
928 # x86 -> x86 cross compile. We use startswith rather than == to handle this
929 # case.
Dylan Bakerc267f462018-06-07 08:38:07 -0700930 # TODO: There may be other cases where the 64 bit version of the
931 # architecture can run 32 bit binaries (aarch64 and armv7 for example)
932 message('''
933 Cross compiling to different architectures, and the host cannot run
934 the build machine's binaries. Disabling assembly.
935 ''')
Dylan Baker2d62fc02017-11-15 16:53:40 -0800936 with_asm = false
937 endif
Dylan Baker32180562017-09-20 20:11:32 -0700938endif
939
940with_asm_arch = ''
941if with_asm
Dylan Baker32180562017-09-20 20:11:32 -0700942 if host_machine.cpu_family() == 'x86'
Greg Vc38c60a2018-01-24 21:02:40 +0300943 if system_has_kms_drm
Dylan Baker32180562017-09-20 20:11:32 -0700944 with_asm_arch = 'x86'
945 pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM',
946 '-DUSE_SSE_ASM']
Matt Turnera5abb2d2018-06-06 20:25:09 -0700947
948 if with_glx_read_only_text
949 pre_args += ['-DGLX_X86_READONLY_TEXT']
950 endif
Dylan Baker32180562017-09-20 20:11:32 -0700951 endif
952 elif host_machine.cpu_family() == 'x86_64'
Greg Vc38c60a2018-01-24 21:02:40 +0300953 if system_has_kms_drm
Dylan Baker32180562017-09-20 20:11:32 -0700954 with_asm_arch = 'x86_64'
955 pre_args += ['-DUSE_X86_64_ASM']
956 endif
957 elif host_machine.cpu_family() == 'arm'
Greg Vc38c60a2018-01-24 21:02:40 +0300958 if system_has_kms_drm
Dylan Baker32180562017-09-20 20:11:32 -0700959 with_asm_arch = 'arm'
960 pre_args += ['-DUSE_ARM_ASM']
961 endif
962 elif host_machine.cpu_family() == 'aarch64'
Greg Vc38c60a2018-01-24 21:02:40 +0300963 if system_has_kms_drm
Dylan Baker32180562017-09-20 20:11:32 -0700964 with_asm_arch = 'aarch64'
965 pre_args += ['-DUSE_AARCH64_ASM']
966 endif
Dylan Bakere26af222018-06-07 10:58:06 -0700967 elif host_machine.cpu_family() == 'sparc64'
968 if system_has_kms_drm
969 with_asm_arch = 'sparc'
970 pre_args += ['-DUSE_SPARC_ASM']
971 endif
Dylan Baker34bbb242018-06-07 11:13:34 -0700972 elif host_machine.cpu_family() == 'ppc64le'
973 if system_has_kms_drm
974 with_asm_arch = 'ppc64le'
975 pre_args += ['-DUSE_PPC64LE_ASM']
976 endif
Dylan Baker32180562017-09-20 20:11:32 -0700977 endif
978endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700979
980# Check for standard headers and functions
981if cc.has_header_symbol('sys/sysmacros.h', 'major')
982 pre_args += '-DMAJOR_IN_SYSMACROS'
983elif cc.has_header_symbol('sys/mkdev.h', 'major')
984 pre_args += '-DMAJOR_IN_MKDEV'
985endif
986
Bas Nieuwenhuizencc10b342018-07-18 13:58:49 +0200987foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h', 'endian.h', 'dlfcn.h']
Eric Engestrom1e36fe52018-03-23 17:18:56 +0000988 if cc.compiles('#include <@0@>'.format(h), name : '@0@'.format(h))
Dylan Bakerd1992252017-09-14 17:57:17 -0700989 pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify())
990 endif
991endforeach
992
Vinson Lee8c1e4b12017-11-28 23:16:58 -0800993foreach f : ['strtof', 'mkostemp', 'posix_memalign', 'timespec_get', 'memfd_create']
Dylan Bakerd1992252017-09-14 17:57:17 -0700994 if cc.has_function(f)
995 pre_args += '-DHAVE_@0@'.format(f.to_upper())
996 endif
997endforeach
998
999# strtod locale support
1000if cc.links('''
1001 #define _GNU_SOURCE
1002 #include <stdlib.h>
1003 #include <locale.h>
1004 #ifdef HAVE_XLOCALE_H
1005 #include <xlocale.h>
1006 #endif
1007 int main() {
1008 locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
1009 const char *s = "1.0";
1010 char *end;
1011 double d = strtod_l(s, end, loc);
Eric Engestromab0809e2017-11-21 14:24:01 +00001012 float f = strtof_l(s, end, loc);
Dylan Bakerd1992252017-09-14 17:57:17 -07001013 freelocale(loc);
1014 return 0;
1015 }''',
Jon Turneya48c0652018-08-02 14:50:27 +01001016 args : pre_args,
Dylan Bakerd1992252017-09-14 17:57:17 -07001017 name : 'strtod has locale support')
1018 pre_args += '-DHAVE_STRTOD_L'
1019endif
1020
1021# Check for some linker flags
1022ld_args_bsymbolic = []
Dylan Bakere21e0a62017-09-30 13:15:52 -07001023if cc.links('int main() { return 0; }', args : '-Wl,-Bsymbolic', name : 'Bsymbolic')
Dylan Bakerd1992252017-09-14 17:57:17 -07001024 ld_args_bsymbolic += '-Wl,-Bsymbolic'
1025endif
1026ld_args_gc_sections = []
1027if cc.links('static char unused() { return 5; } int main() { return 0; }',
Dylan Bakere21e0a62017-09-30 13:15:52 -07001028 args : '-Wl,--gc-sections', name : 'gc-sections')
Dylan Bakerd1992252017-09-14 17:57:17 -07001029 ld_args_gc_sections += '-Wl,--gc-sections'
1030endif
Dylan Bakere21e0a62017-09-30 13:15:52 -07001031with_ld_version_script = false
1032if cc.links('int main() { return 0; }',
1033 args : '-Wl,--version-script=@0@'.format(
1034 join_paths(meson.source_root(), 'build-support/conftest.map')),
1035 name : 'version-script')
1036 with_ld_version_script = true
1037endif
1038with_ld_dynamic_list = false
1039if cc.links('int main() { return 0; }',
1040 args : '-Wl,--dynamic-list=@0@'.format(
1041 join_paths(meson.source_root(), 'build-support/conftest.dyn')),
1042 name : 'dynamic-list')
1043 with_ld_dynamic_list = true
1044endif
Jon Turney80bc41b2017-12-03 21:58:12 +00001045ld_args_build_id = []
1046if build_machine.system() != 'darwin'
1047 ld_args_build_id += '-Wl,--build-id=sha1'
1048endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001049
1050# check for dl support
1051if cc.has_function('dlopen')
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001052 dep_dl = null_dep
Dylan Bakerd1992252017-09-14 17:57:17 -07001053else
1054 dep_dl = cc.find_library('dl')
1055endif
Dylan Baker32180562017-09-20 20:11:32 -07001056if cc.has_function('dladdr', dependencies : dep_dl)
1057 # This is really only required for megadrivers
1058 pre_args += '-DHAVE_DLADDR'
Dylan Bakerd1992252017-09-14 17:57:17 -07001059endif
1060
1061if cc.has_function('dl_iterate_phdr')
1062 pre_args += '-DHAVE_DL_ITERATE_PHDR'
Dylan Bakere89842e2017-11-15 17:07:37 -08001063elif with_intel_vk
1064 error('Intel "Anvil" Vulkan driver requires the dl_iterate_phdr function')
1065elif with_dri_i965 and get_option('shader-cache')
1066 error('Intel i965 GL driver requires dl_iterate_phdr when built with shader caching.')
Dylan Bakerd1992252017-09-14 17:57:17 -07001067endif
1068
1069# Determine whether or not the rt library is needed for time functions
1070if cc.has_function('clock_gettime')
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001071 dep_clock = null_dep
Dylan Bakerd1992252017-09-14 17:57:17 -07001072else
1073 dep_clock = cc.find_library('rt')
1074endif
1075
1076# TODO: some of these may be conditional
1077dep_zlib = dependency('zlib', version : '>= 1.2.3')
Grazvydas Ignotas87f72342017-12-29 01:29:10 +02001078pre_args += '-DHAVE_ZLIB'
Dylan Bakerd1992252017-09-14 17:57:17 -07001079dep_thread = dependency('threads')
Jon Turney8ceccbf2017-11-13 10:13:39 +00001080if dep_thread.found() and host_machine.system() != 'windows'
Dylan Baker50c28df2017-09-29 17:53:01 -07001081 pre_args += '-DHAVE_PTHREAD'
Dylan Baker3acc18f2018-09-13 11:06:09 -07001082 if cc.has_function(
1083 'pthread_setaffinity_np',
1084 dependencies : dep_thread,
1085 prefix : '#include <pthread.h>',
1086 args : '-D_GNU_SOURCE')
1087 pre_args += '-DHAVE_PTHREAD_SETAFFINITY'
1088 endif
Dylan Baker50c28df2017-09-29 17:53:01 -07001089endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001090dep_expat = dependency('expat')
1091# this only exists on linux so either this is linux and it will be found, or
1092# its not linux and and wont
1093dep_m = cc.find_library('m', required : false)
Dylan Baker66f97f62017-09-30 09:03:51 -07001094
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001095# Check for libdrm. various drivers have different libdrm version requirements,
1096# but we always want to use the same version for all libdrm modules. That means
1097# even if driver foo requires 2.4.0 and driver bar requires 2.4.3, if foo and
1098# bar are both on use 2.4.3 for both of them
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001099dep_libdrm_amdgpu = null_dep
1100dep_libdrm_radeon = null_dep
1101dep_libdrm_nouveau = null_dep
1102dep_libdrm_etnaviv = null_dep
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001103dep_libdrm_intel = null_dep
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001104
Boyuan Zhang0f59e3f2018-10-17 15:03:17 -04001105_drm_amdgpu_ver = '2.4.95'
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001106_drm_radeon_ver = '2.4.71'
1107_drm_nouveau_ver = '2.4.66'
Christian Gmeiner72d20432018-03-25 22:29:56 +02001108_drm_etnaviv_ver = '2.4.89'
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001109_drm_intel_ver = '2.4.75'
1110_drm_ver = '2.4.75'
1111
1112_libdrm_checks = [
1113 ['intel', with_dri_i915 or with_gallium_i915],
1114 ['amdgpu', with_amd_vk or with_gallium_radeonsi],
1115 ['radeon', (with_gallium_radeonsi or with_dri_r100 or with_dri_r200 or
1116 with_gallium_r300 or with_gallium_r600)],
1117 ['nouveau', (with_gallium_nouveau or with_dri_nouveau)],
1118 ['etnaviv', with_gallium_etnaviv],
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001119]
1120
Stefan Schake4fc0ebd2018-04-25 00:00:57 +02001121# VC4 only needs core libdrm support of this version, not a libdrm_vc4
1122# library.
1123if with_gallium_vc4
1124 _drm_ver = '2.4.89'
1125endif
1126
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001127# Loop over the enables versions and get the highest libdrm requirement for all
1128# active drivers.
Dylan Bakerd25a27e2018-09-04 14:42:07 -07001129_drm_blame = ''
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001130foreach d : _libdrm_checks
1131 ver = get_variable('_drm_@0@_ver'.format(d[0]))
1132 if d[1] and ver.version_compare('>' + _drm_ver)
1133 _drm_ver = ver
Dylan Bakerd25a27e2018-09-04 14:42:07 -07001134 _drm_blame = d[0]
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001135 endif
1136endforeach
Dylan Bakerd25a27e2018-09-04 14:42:07 -07001137if _drm_blame != ''
1138 message('libdrm @0@ needed because @1@ has the highest requirement'.format(_drm_ver, _drm_blame))
1139endif
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001140
1141# Then get each libdrm module
1142foreach d : _libdrm_checks
1143 if d[1]
1144 set_variable(
1145 'dep_libdrm_' + d[0],
Dylan Bakerb9ad5282018-04-17 13:47:17 -07001146 dependency('libdrm_' + d[0], version : '>=' + _drm_ver)
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001147 )
1148 endif
1149endforeach
Dylan Baker673dda82017-09-20 11:53:29 -07001150
Dylan Bakeracadf062018-03-12 15:58:40 -07001151with_gallium_drisw_kms = false
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001152dep_libdrm = dependency(
1153 'libdrm', version : '>=' + _drm_ver,
Dylan Bakerb9ad5282018-04-17 13:47:17 -07001154 required : with_dri2 or with_dri3
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001155)
Dylan Bakeracadf062018-03-12 15:58:40 -07001156if dep_libdrm.found()
1157 pre_args += '-DHAVE_LIBDRM'
1158 if with_dri_platform == 'drm' and with_dri
1159 with_gallium_drisw_kms = true
1160 endif
1161endif
1162
Dylan Baker673dda82017-09-20 11:53:29 -07001163llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit']
Dylan Baker0ce3f352018-06-07 11:22:48 -07001164llvm_optional_modules = []
Dylan Baker5060c512017-10-25 18:55:38 -07001165if with_amd_vk or with_gallium_radeonsi or with_gallium_r600
Dylan Baker673dda82017-09-20 11:53:29 -07001166 llvm_modules += ['amdgpu', 'bitreader', 'ipo']
Dylan Baker5060c512017-10-25 18:55:38 -07001167 if with_gallium_r600
1168 llvm_modules += 'asmparser'
1169 endif
Dylan Baker673dda82017-09-20 11:53:29 -07001170endif
Dylan Baker42ea0632017-12-08 15:26:00 -08001171if with_gallium_opencl
1172 llvm_modules += [
1173 'all-targets', 'linker', 'coverage', 'instrumentation', 'ipo', 'irreader',
1174 'lto', 'option', 'objcarcopts', 'profiledata',
1175 ]
Emil Velikov08bff092018-09-07 14:58:03 +01001176 llvm_optional_modules += ['coroutines']
Dylan Baker42ea0632017-12-08 15:26:00 -08001177endif
Dylan Baker48f64e52017-11-17 16:37:50 -08001178
Marek Olšákfd1121e2018-07-01 15:50:51 -04001179if with_amd_vk or with_gallium_radeonsi
1180 _llvm_version = '>= 6.0.0'
1181elif with_gallium_swr
Juan A. Suarez Romero0cef0cc2018-08-06 11:30:08 +02001182 _llvm_version = '>= 6.0.0'
Andres Gomez36ac4852018-02-14 00:42:57 +02001183elif with_gallium_opencl or with_gallium_r600
Dylan Bakerc75a4e52018-02-02 10:45:12 -08001184 _llvm_version = '>= 3.9.0'
1185else
1186 _llvm_version = '>= 3.3.0'
1187endif
1188
Christoph Haagb01834b2018-09-18 01:08:07 +02001189_shared_llvm = get_option('shared-llvm')
1190
Dylan Baker48f64e52017-11-17 16:37:50 -08001191_llvm = get_option('llvm')
Dylan Bakerf03a1602018-09-24 09:32:56 -07001192dep_llvm = null_dep
1193with_llvm = false
1194if _llvm != 'false'
Eric Anholtd975e692017-11-08 11:52:09 -08001195 dep_llvm = dependency(
Dylan Baker0ce3f352018-06-07 11:22:48 -07001196 'llvm',
1197 version : _llvm_version,
1198 modules : llvm_modules,
1199 optional_modules : llvm_optional_modules,
Dylan Bakerf03a1602018-09-24 09:32:56 -07001200 required : (
1201 with_amd_vk or with_gallium_radeonsi or with_gallium_swr or
1202 with_gallium_opencl or _llvm == 'true'
1203 ),
Christoph Haagb01834b2018-09-18 01:08:07 +02001204 static : not _shared_llvm,
Dylan Baker0ce3f352018-06-07 11:22:48 -07001205 )
Dylan Bakerf03a1602018-09-24 09:32:56 -07001206 with_llvm = dep_llvm.found()
Dylan Baker48f64e52017-11-17 16:37:50 -08001207endif
1208if with_llvm
1209 _llvm_version = dep_llvm.version().split('.')
Andres Gomez98f76502018-02-28 23:15:07 +02001210
1211 # 3 digits versions in LLVM only started from 3.4.1 on
1212 if dep_llvm.version().version_compare('>= 3.4.1')
1213 _llvm_patch = _llvm_version[2]
1214 else
1215 _llvm_patch = '0'
1216 endif
1217
Dylan Baker48f64e52017-11-17 16:37:50 -08001218 pre_args += [
Marc Dietricha2a1b0e2018-01-24 22:03:51 +01001219 '-DHAVE_LLVM=0x0@0@0@1@'.format(_llvm_version[0], _llvm_version[1]),
Dylan Baker48f64e52017-11-17 16:37:50 -08001220 '-DMESA_LLVM_VERSION_PATCH=@0@'.format(_llvm_patch),
1221 ]
Dylan Bakerc5a97d62018-04-16 14:47:58 -07001222
1223 # LLVM can be built without rtti, turning off rtti changes the ABI of C++
1224 # programs, so we need to build all C++ code in mesa without rtti as well to
1225 # ensure that linking works.
1226 if dep_llvm.get_configtool_variable('has-rtti') == 'NO'
Dylan Baker1d01b522018-04-24 14:15:47 -07001227 cpp_args += '-fno-rtti'
Dylan Bakerc5a97d62018-04-16 14:47:58 -07001228 endif
Dylan Bakere0b037d2017-11-29 17:50:05 -08001229elif with_amd_vk or with_gallium_radeonsi or with_gallium_swr
Marek Olšák3bf1e032018-02-02 19:26:49 +01001230 error('The following drivers require LLVM: Radv, RadeonSI, SWR. One of these is enabled, but LLVM is disabled.')
Dylan Baker673dda82017-09-20 11:53:29 -07001231endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001232
Dylan Baker4e785fb2018-10-22 07:26:44 -07001233if (with_amd_vk or with_gallium_radeonsi or with_gallium_opencl or
1234 (with_gallium_r600 and with_llvm))
1235 dep_elf = dependency('libelf', required : false)
1236 if not dep_elf.found()
1237 dep_elf = cc.find_library('elf')
1238 endif
1239else
1240 dep_elf = null_dep
1241endif
1242
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001243dep_glvnd = null_dep
Dylan Bakera47c5252017-09-22 12:55:00 -07001244if with_glvnd
1245 dep_glvnd = dependency('libglvnd', version : '>= 0.2.0')
1246 pre_args += '-DUSE_LIBGLVND=1'
1247endif
1248
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +02001249if with_valgrind != 'false'
1250 dep_valgrind = dependency('valgrind', required : with_valgrind == 'true')
1251 if dep_valgrind.found()
1252 pre_args += '-DHAVE_VALGRIND'
1253 endif
1254else
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001255 dep_valgrind = null_dep
Dylan Bakerd1992252017-09-14 17:57:17 -07001256endif
1257
1258# pthread stubs. Lets not and say we didn't
1259
Dylan Baker32180562017-09-20 20:11:32 -07001260prog_bison = find_program('bison', required : with_any_opengl)
1261prog_flex = find_program('flex', required : with_any_opengl)
1262
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001263dep_selinux = null_dep
Eric Engestrom4b9421d2017-10-26 16:19:41 +01001264if get_option('selinux')
1265 dep_selinux = dependency('libselinux')
1266 pre_args += '-DMESA_SELINUX'
1267endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001268
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +02001269if with_libunwind != 'false'
1270 dep_unwind = dependency('libunwind', required : with_libunwind == 'true')
1271 if dep_unwind.found()
1272 pre_args += '-DHAVE_LIBUNWIND'
1273 endif
1274else
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001275 dep_unwind = null_dep
Dylan Bakerb1b65392017-09-28 22:25:02 -07001276endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001277
Dylan Bakercbbd5bb2017-10-20 21:48:18 -07001278if with_osmesa != 'none'
1279 if with_osmesa == 'classic' and not with_dri_swrast
1280 error('OSMesa classic requires dri (classic) swrast.')
1281 endif
Dylan Bakerf121a662017-10-24 15:52:57 -07001282 if with_osmesa == 'gallium' and not with_gallium_softpipe
1283 error('OSMesa gallium requires gallium softpipe or llvmpipe.')
1284 endif
Dylan Bakercbbd5bb2017-10-20 21:48:18 -07001285 osmesa_lib_name = 'OSMesa'
1286 osmesa_bits = get_option('osmesa-bits')
1287 if osmesa_bits != '8'
1288 if with_dri or with_glx != 'disabled'
1289 error('OSMesa bits must be 8 if building glx or dir based drivers')
1290 endif
1291 osmesa_lib_name = osmesa_lib_name + osmesa_bits
1292 pre_args += [
1293 '-DCHAN_BITS=@0@'.format(osmesa_bits), '-DDEFAULT_SOFTWARE_DEPTH_BITS=31'
1294 ]
1295 endif
1296endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001297
Dylan Bakerd1992252017-09-14 17:57:17 -07001298# TODO: symbol mangling
1299
Dylan Bakerd1992252017-09-14 17:57:17 -07001300if with_platform_wayland
Emil Velikovc077b742018-06-28 14:34:18 +01001301 dep_wl_scanner = dependency('wayland-scanner', native: true)
1302 prog_wl_scanner = find_program(dep_wl_scanner.get_pkgconfig_variable('wayland_scanner'))
Emil Velikov2f1d9e62018-06-28 14:42:08 +01001303 if dep_wl_scanner.version().version_compare('>= 1.15')
1304 wl_scanner_arg = 'private-code'
1305 else
1306 wl_scanner_arg = 'code'
1307 endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001308 dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.8')
1309 dep_wayland_client = dependency('wayland-client', version : '>=1.11')
1310 dep_wayland_server = dependency('wayland-server', version : '>=1.11')
Eric Engestrom1db4ec02018-05-29 15:41:28 +01001311 if with_egl
Eric Engestrom37eb56d2018-06-07 15:45:01 +01001312 dep_wayland_egl = dependency('wayland-egl-backend', version : '>= 3')
1313 dep_wayland_egl_headers = declare_dependency(
1314 compile_args : run_command(prog_pkgconfig, ['wayland-egl-backend', '--cflags']).stdout().split())
Eric Engestrom1db4ec02018-05-29 15:41:28 +01001315 endif
Dylan Baker108d2572017-10-18 12:20:43 -07001316 wayland_dmabuf_xml = join_paths(
1317 dep_wl_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable',
1318 'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'
1319 )
1320 pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED']
Dylan Bakerd1992252017-09-14 17:57:17 -07001321else
1322 prog_wl_scanner = []
Emil Velikov2f1d9e62018-06-28 14:42:08 +01001323 wl_scanner_arg = ''
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001324 dep_wl_protocols = null_dep
1325 dep_wayland_client = null_dep
1326 dep_wayland_server = null_dep
Dylan Baker108d2572017-10-18 12:20:43 -07001327 wayland_dmabuf_xml = ''
Dylan Bakerd1992252017-09-14 17:57:17 -07001328endif
1329
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001330dep_x11 = null_dep
1331dep_xext = null_dep
1332dep_xdamage = null_dep
1333dep_xfixes = null_dep
1334dep_x11_xcb = null_dep
1335dep_xcb = null_dep
1336dep_xcb_glx = null_dep
1337dep_xcb_dri2 = null_dep
1338dep_xcb_dri3 = null_dep
1339dep_dri2proto = null_dep
1340dep_glproto = null_dep
1341dep_xxf86vm = null_dep
1342dep_xcb_dri3 = null_dep
1343dep_xcb_present = null_dep
1344dep_xcb_sync = null_dep
1345dep_xcb_xfixes = null_dep
1346dep_xshmfence = null_dep
Keith Packard7ab1fff2018-02-09 07:45:58 -08001347dep_xcb_xrandr = null_dep
Keith Packard3f960c12018-06-19 15:58:30 -07001348dep_xlib_xrandr = null_dep
Dylan Bakerd1992252017-09-14 17:57:17 -07001349if with_platform_x11
Dylan Bakerad9c2f52017-11-02 13:36:44 -07001350 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
Dylan Baker118a7f02017-11-01 17:42:41 -07001351 dep_x11 = dependency('x11')
1352 dep_xext = dependency('xext')
1353 dep_xcb = dependency('xcb')
Jon Turney6f0ce262017-11-23 13:51:43 +00001354 elif with_glx == 'dri'
Dylan Baker50c28df2017-09-29 17:53:01 -07001355 dep_x11 = dependency('x11')
1356 dep_xext = dependency('xext')
1357 dep_xdamage = dependency('xdamage', version : '>= 1.1')
1358 dep_xfixes = dependency('xfixes')
1359 dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1')
Dylan Baker1f11ac42017-10-24 11:34:04 -07001360 dep_xxf86vm = dependency('xxf86vm', required : false)
Dylan Bakera47c5252017-09-22 12:55:00 -07001361 endif
Dylan Bakerc34b53f2017-12-05 09:40:03 -08001362 if (with_any_vk or with_glx == 'dri' or
Dylan Baker34e852d2018-03-06 10:11:38 -08001363 (with_gallium_vdpau or with_gallium_xvmc or with_gallium_va or
1364 with_gallium_omx != 'disabled'))
Dylan Baker50c28df2017-09-29 17:53:01 -07001365 dep_xcb = dependency('xcb')
1366 dep_x11_xcb = dependency('x11-xcb')
Jon Turney6f0ce262017-11-23 13:51:43 +00001367 endif
Dylan Bakerf74cf042018-02-28 10:13:38 -08001368 if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm')
Dylan Baker50c28df2017-09-29 17:53:01 -07001369 dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8')
1370
Dylan Bakera47c5252017-09-22 12:55:00 -07001371 if with_dri3
Rob Clarkbc500132018-03-13 19:00:45 -04001372 pre_args += '-DHAVE_DRI3'
1373 dep_xcb_dri3 = dependency('xcb-dri3')
1374 dep_xcb_present = dependency('xcb-present')
1375 # until xcb-dri3 has been around long enough to make a hard-dependency:
1376 if (dep_xcb_dri3.version().version_compare('>= 1.13') and
1377 dep_xcb_present.version().version_compare('>= 1.13'))
1378 pre_args += '-DHAVE_DRI3_MODIFIERS'
1379 endif
Dylan Baker50c28df2017-09-29 17:53:01 -07001380 dep_xcb_sync = dependency('xcb-sync')
1381 dep_xshmfence = dependency('xshmfence', version : '>= 1.1')
Dylan Bakera47c5252017-09-22 12:55:00 -07001382 endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001383 endif
Dylan Baker118a7f02017-11-01 17:42:41 -07001384 if with_glx == 'dri'
Jon Turney3ae998a2017-11-23 14:01:57 +00001385 if with_dri_platform == 'drm'
1386 dep_dri2proto = dependency('dri2proto', version : '>= 2.8')
1387 endif
Dylan Baker50c28df2017-09-29 17:53:01 -07001388 dep_glproto = dependency('glproto', version : '>= 1.4.14')
1389 endif
Dylan Baker1e9d7792018-02-28 13:07:57 -08001390 if (with_egl or (
1391 with_gallium_vdpau or with_gallium_xvmc or with_gallium_xa or
1392 with_gallium_omx != 'disabled'))
Dylan Baker108d2572017-10-18 12:20:43 -07001393 dep_xcb_xfixes = dependency('xcb-xfixes')
1394 endif
Keith Packard7ab1fff2018-02-09 07:45:58 -08001395 if with_xlib_lease
1396 dep_xcb_xrandr = dependency('xcb-randr', version : '>= 1.12')
Keith Packard3f960c12018-06-19 15:58:30 -07001397 dep_xlib_xrandr = dependency('xrandr', version : '>= 1.3')
Keith Packard7ab1fff2018-02-09 07:45:58 -08001398 endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001399endif
1400
Dylan Baker73092072017-11-28 16:31:06 -08001401if get_option('gallium-extra-hud')
1402 pre_args += '-DHAVE_GALLIUM_EXTRA_HUD=1'
1403endif
1404
Dylan Baker5e71efe2017-11-28 16:42:37 -08001405_sensors = get_option('lmsensors')
1406if _sensors != 'false'
1407 dep_lmsensors = cc.find_library('libsensors', required : _sensors == 'true')
1408 if dep_lmsensors.found()
1409 pre_args += '-DHAVE_LIBSENSORS=1'
1410 endif
1411else
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001412 dep_lmsensors = null_dep
Dylan Baker5e71efe2017-11-28 16:42:37 -08001413endif
1414
Dylan Bakerd1992252017-09-14 17:57:17 -07001415foreach a : pre_args
1416 add_project_arguments(a, language : ['c', 'cpp'])
1417endforeach
1418foreach a : c_args
1419 add_project_arguments(a, language : ['c'])
1420endforeach
1421foreach a : cpp_args
1422 add_project_arguments(a, language : ['cpp'])
1423endforeach
1424
1425inc_include = include_directories('include')
1426
Lukas Rusak4cfc4ce2018-06-04 12:38:41 -07001427gl_priv_reqs = []
1428
1429if with_glx == 'xlib' or with_glx == 'gallium-xlib'
1430 gl_priv_reqs += ['x11', 'xext', 'xcb']
1431elif with_glx == 'dri'
1432 gl_priv_reqs += [
1433 'x11', 'xext', 'xdamage >= 1.1', 'xfixes', 'x11-xcb', 'xcb',
1434 'xcb-glx >= 1.8.1']
1435 if with_dri_platform == 'drm'
1436 gl_priv_reqs += 'xcb-dri2 >= 1.8'
1437 endif
1438endif
Jon Turney4a0bab12018-01-25 18:53:08 +00001439if dep_libdrm.found()
1440 gl_priv_reqs += 'libdrm >= 2.4.75'
1441endif
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001442if dep_xxf86vm.found()
Dylan Bakerb92992e2017-10-24 11:28:42 -07001443 gl_priv_reqs += 'xxf86vm'
Dylan Baker108d2572017-10-18 12:20:43 -07001444endif
Dylan Baker108d2572017-10-18 12:20:43 -07001445
1446gl_priv_libs = []
1447if dep_thread.found()
1448 gl_priv_libs += ['-lpthread', '-pthread']
1449endif
1450if dep_m.found()
1451 gl_priv_libs += '-lm'
1452endif
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001453if dep_dl.found()
Dylan Baker108d2572017-10-18 12:20:43 -07001454 gl_priv_libs += '-ldl'
1455endif
1456
Dylan Baker32180562017-09-20 20:11:32 -07001457pkg = import('pkgconfig')
1458
Eric Engestrom11d45302018-02-23 17:02:08 +00001459env_test = environment()
1460env_test.set('NM', find_program('nm').path())
1461
Dylan Bakerd1992252017-09-14 17:57:17 -07001462subdir('include')
Eric Engestrom05a94a42017-10-24 18:03:39 +01001463subdir('bin')
Dylan Bakerd1992252017-09-14 17:57:17 -07001464subdir('src')