blob: a4dfa62255c632569ab4bf7d56aa864ec1b6ea5c [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',
28 meson_version : '>= 0.42',
Eric Engestromd5597f02017-11-06 16:49:27 +000029 default_options : ['buildtype=debugoptimized', 'c_std=c99', 'cpp_std=c++11']
Eric Engestrom7983adc2017-10-24 14:57:11 +010030)
Dylan Bakerd1992252017-09-14 17:57:17 -070031
Dylan Bakerb5f92b62018-03-15 13:30:22 -070032null_dep = dependency('', required : false)
33
Dylan Bakerf74cf042018-02-28 10:13:38 -080034system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'dragonfly', 'linux'].contains(host_machine.system())
35
Dylan Baker32180562017-09-20 20:11:32 -070036# Arguments for the preprocessor, put these in a separate array from the C and
37# C++ (cpp in meson terminology) arguments since they need to be added to the
38# default arguments for both C and C++.
39pre_args = [
40 '-D__STDC_CONSTANT_MACROS',
41 '-D__STDC_FORMAT_MACROS',
42 '-D__STDC_LIMIT_MACROS',
43 '-DVERSION="@0@"'.format(meson.project_version()),
44 '-DPACKAGE_VERSION=VERSION',
45 '-DPACKAGE_BUGREPORT="https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa"',
46]
47
Dylan Bakere915b8d2017-09-28 14:02:51 -070048with_vulkan_icd_dir = get_option('vulkan-icd-dir')
Dylan Bakerd1992252017-09-14 17:57:17 -070049with_tests = get_option('build-tests')
50with_valgrind = get_option('valgrind')
Erik Faye-Lund9e5a5a12017-10-23 20:54:03 +020051with_libunwind = get_option('libunwind')
Dylan Baker32180562017-09-20 20:11:32 -070052with_asm = get_option('asm')
Dylan Bakercbbd5bb2017-10-20 21:48:18 -070053with_osmesa = get_option('osmesa')
Dylan Bakere0b037d2017-11-29 17:50:05 -080054with_swr_arches = get_option('swr-arches').split(',')
Scott D Phillips1f4d2432018-02-07 16:55:24 -080055with_tools = get_option('tools').split(',')
56if with_tools.contains('all')
57 with_tools = ['freedreno', 'glsl', 'intel', 'nir', 'nouveau']
58endif
Dylan Baker3b209e92017-10-10 15:25:07 -070059if get_option('texture-float')
60 pre_args += '-DTEXTURE_FLOAT_ENABLED'
61 message('WARNING: Floating-point texture enabled. Please consult docs/patents.txt and your lawyer before building mesa.')
62endif
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 -070096with_dri = false
Ville Syrjälä22899642017-10-10 01:15:42 +030097with_dri_i915 = false
Dylan Baker32180562017-09-20 20:11:32 -070098with_dri_i965 = false
Dylan Baker191e7852017-10-16 17:12:52 -070099with_dri_r100 = false
Dylan Bakereecd2862017-10-16 17:24:56 -0700100with_dri_r200 = false
Dylan Bakereb3bb032017-10-16 17:51:47 -0700101with_dri_nouveau = false
Dylan Bakerc2cd5802017-10-03 17:06:22 -0700102with_dri_swrast = false
Dylan Baker32180562017-09-20 20:11:32 -0700103_drivers = get_option('dri-drivers')
Dylan Baker18733272017-10-30 10:17:22 -0700104if _drivers == 'auto'
Greg Ve30a1652018-03-06 22:16:03 +0300105 if system_has_kms_drm
Jon Turney47729092018-02-02 22:25:48 +0000106 # TODO: PPC, Sparc
Dylan Baker18733272017-10-30 10:17:22 -0700107 if ['x86', 'x86_64'].contains(host_machine.cpu_family())
108 _drivers = 'i915,i965,r100,r200,nouveau'
Daniel Stoned7603cb2018-02-27 10:00:24 +0000109 elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
110 _drivers = ''
Dylan Baker18733272017-10-30 10:17:22 -0700111 else
112 error('Unknown architecture. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.')
113 endif
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600114 elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
Jon Turney47729092018-02-02 22:25:48 +0000115 # only swrast would make sense here, but gallium swrast is a much better default
116 _drivers = ''
Dylan Baker18733272017-10-30 10:17:22 -0700117 else
118 error('Unknown OS. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.')
119 endif
120endif
Dylan Baker32180562017-09-20 20:11:32 -0700121if _drivers != ''
122 _split = _drivers.split(',')
Ville Syrjälä22899642017-10-10 01:15:42 +0300123 with_dri_i915 = _split.contains('i915')
Dylan Baker32180562017-09-20 20:11:32 -0700124 with_dri_i965 = _split.contains('i965')
Dylan Baker191e7852017-10-16 17:12:52 -0700125 with_dri_r100 = _split.contains('r100')
Dylan Bakereecd2862017-10-16 17:24:56 -0700126 with_dri_r200 = _split.contains('r200')
Dylan Bakereb3bb032017-10-16 17:51:47 -0700127 with_dri_nouveau = _split.contains('nouveau')
Dylan Bakerc2cd5802017-10-03 17:06:22 -0700128 with_dri_swrast = _split.contains('swrast')
Dylan Baker32180562017-09-20 20:11:32 -0700129 with_dri = true
130endif
131
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700132with_gallium = false
Eric Anholt1918c9b2017-10-12 18:39:08 -0700133with_gallium_pl111 = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700134with_gallium_radeonsi = false
Dylan Baker4ae08292017-10-25 17:59:11 -0700135with_gallium_r300 = false
Dylan Baker5060c512017-10-25 18:55:38 -0700136with_gallium_r600 = false
Dylan Baker813b4b02017-10-09 14:59:35 -0700137with_gallium_nouveau = false
Rob Clark4aa69cc2017-10-14 10:08:50 -0400138with_gallium_freedreno = false
Dylan Bakerf3d03a22017-10-10 11:57:50 -0700139with_gallium_softpipe = false
Eric Anholt1ae80182017-10-12 13:53:12 -0700140with_gallium_vc4 = false
Eric Anholt4f3e3802017-10-12 18:40:16 -0700141with_gallium_vc5 = false
Dylan Baker51558a12017-10-20 15:45:22 -0700142with_gallium_etnaviv = false
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700143with_gallium_imx = false
Thierry Reding1755f602014-05-28 00:36:48 +0200144with_gallium_tegra = false
Dylan Baker9169dde2017-10-25 16:54:53 -0700145with_gallium_i915 = false
Dylan Bakera5372312017-10-26 14:19:19 -0700146with_gallium_svga = false
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700147with_gallium_virgl = false
Dylan Baker73ce7cb2018-01-08 17:43:45 -0800148with_gallium_swr = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700149_drivers = get_option('gallium-drivers')
Dylan Baker18733272017-10-30 10:17:22 -0700150if _drivers == 'auto'
Greg Ve30a1652018-03-06 22:16:03 +0300151 if system_has_kms_drm
Dylan Baker18733272017-10-30 10:17:22 -0700152 # TODO: PPC, Sparc
153 if ['x86', 'x86_64'].contains(host_machine.cpu_family())
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700154 _drivers = 'r300,r600,radeonsi,nouveau,virgl,svga,swrast'
Dylan Baker18733272017-10-30 10:17:22 -0700155 elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
Daniel Stonebc5e5912018-02-27 18:00:23 +0000156 _drivers = 'pl111,vc4,vc5,freedreno,etnaviv,imx,nouveau,tegra,virgl,swrast'
Dylan Baker18733272017-10-30 10:17:22 -0700157 else
158 error('Unknown architecture. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.')
159 endif
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600160 elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
Jon Turney47729092018-02-02 22:25:48 +0000161 _drivers = 'swrast'
Dylan Baker18733272017-10-30 10:17:22 -0700162 else
163 error('Unknown OS. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.')
164 endif
165endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700166if _drivers != ''
167 _split = _drivers.split(',')
Dylan Bakerfbf39fd2017-10-17 14:44:15 -0700168 with_gallium_pl111 = _split.contains('pl111')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700169 with_gallium_radeonsi = _split.contains('radeonsi')
Dylan Baker4ae08292017-10-25 17:59:11 -0700170 with_gallium_r300 = _split.contains('r300')
Dylan Baker5060c512017-10-25 18:55:38 -0700171 with_gallium_r600 = _split.contains('r600')
Dylan Baker813b4b02017-10-09 14:59:35 -0700172 with_gallium_nouveau = _split.contains('nouveau')
Rob Clark4aa69cc2017-10-14 10:08:50 -0400173 with_gallium_freedreno = _split.contains('freedreno')
Dylan Bakerde24d612017-10-10 14:27:19 -0700174 with_gallium_softpipe = _split.contains('swrast')
Eric Anholt1ae80182017-10-12 13:53:12 -0700175 with_gallium_vc4 = _split.contains('vc4')
Eric Anholt4f3e3802017-10-12 18:40:16 -0700176 with_gallium_vc5 = _split.contains('vc5')
Dylan Baker51558a12017-10-20 15:45:22 -0700177 with_gallium_etnaviv = _split.contains('etnaviv')
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700178 with_gallium_imx = _split.contains('imx')
Thierry Reding1755f602014-05-28 00:36:48 +0200179 with_gallium_tegra = _split.contains('tegra')
Dylan Baker9169dde2017-10-25 16:54:53 -0700180 with_gallium_i915 = _split.contains('i915')
Dylan Bakera5372312017-10-26 14:19:19 -0700181 with_gallium_svga = _split.contains('svga')
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700182 with_gallium_virgl = _split.contains('virgl')
Dylan Bakere0b037d2017-11-29 17:50:05 -0800183 with_gallium_swr = _split.contains('swr')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700184 with_gallium = true
Dylan Bakerf74cf042018-02-28 10:13:38 -0800185 if system_has_kms_drm
186 _glx = get_option('glx')
187 _egl = get_option('egl')
188 if _glx == 'dri' or _egl == 'true' or (_glx == 'disabled' and _egl != 'false')
189 with_dri = true
190 endif
191 endif
Ville Syrjälä22899642017-10-10 01:15:42 +0300192endif
193
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800194with_intel_vk = false
195with_amd_vk = false
196with_any_vk = false
197_vulkan_drivers = get_option('vulkan-drivers')
198if _vulkan_drivers == 'auto'
Greg Ve30a1652018-03-06 22:16:03 +0300199 if system_has_kms_drm
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800200 if host_machine.cpu_family().startswith('x86')
201 _vulkan_drivers = 'amd,intel'
202 else
203 error('Unknown architecture. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.')
204 endif
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600205 elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system())
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800206 # No vulkan driver supports windows or macOS currently
207 _vulkan_drivers = ''
Jon Turney47729092018-02-02 22:25:48 +0000208 else
209 error('Unknown OS. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.')
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800210 endif
211endif
212if _vulkan_drivers != ''
213 _split = _vulkan_drivers.split(',')
214 with_intel_vk = _split.contains('intel')
215 with_amd_vk = _split.contains('amd')
216 with_any_vk = with_amd_vk or with_intel_vk
217endif
218
Dylan Bakere0b037d2017-11-29 17:50:05 -0800219if with_dri_swrast and (with_gallium_softpipe or with_gallium_swr)
Dylan Bakerde24d612017-10-10 14:27:19 -0700220 error('Only one swrast provider can be built')
221endif
Dylan Baker9169dde2017-10-25 16:54:53 -0700222if with_dri_i915 and with_gallium_i915
223 error('Only one i915 provider can be built')
224endif
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700225if with_gallium_imx and not with_gallium_etnaviv
226 error('IMX driver requires etnaviv driver')
227endif
Eric Engestromf0337f02017-12-04 15:06:03 +0000228if with_gallium_pl111 and not with_gallium_vc4
229 error('pl111 driver requires vc4 driver')
230endif
Thierry Reding1755f602014-05-28 00:36:48 +0200231if with_gallium_tegra and not with_gallium_nouveau
232 error('tegra driver requires nouveau driver')
233endif
Dylan Bakerde24d612017-10-10 14:27:19 -0700234
Dylan Baker33627d22017-10-27 17:20:52 -0700235if host_machine.system() == 'darwin'
236 with_dri_platform = 'apple'
237elif ['windows', 'cygwin'].contains(host_machine.system())
238 with_dri_platform = 'windows'
Greg Vc38c60a2018-01-24 21:02:40 +0300239elif system_has_kms_drm
Dylan Baker33627d22017-10-27 17:20:52 -0700240 with_dri_platform = 'drm'
241else
242 # FIXME: haiku doesn't use dri, and xlib doesn't use dri, probably should
243 # assert here that one of those cases has been met.
244 # FIXME: GNU (hurd) ends up here as well, but meson doesn't officially
245 # support Hurd at time of writing (2017/11)
Greg Vc38c60a2018-01-24 21:02:40 +0300246 # FIXME: illumos ends up here as well
Dylan Baker33627d22017-10-27 17:20:52 -0700247 with_dri_platform = 'none'
248endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700249
Eric Engestromc5ec1552017-10-24 16:08:15 +0100250with_platform_android = false
Dylan Bakerd1992252017-09-14 17:57:17 -0700251with_platform_wayland = false
252with_platform_x11 = false
Dylan Bakerb1b65392017-09-28 22:25:02 -0700253with_platform_drm = false
Dylan Baker108d2572017-10-18 12:20:43 -0700254with_platform_surfaceless = false
255egl_native_platform = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700256_platforms = get_option('platforms')
Dylan Baker4b61b072017-11-15 17:31:32 -0800257if _platforms == 'auto'
Greg Vc38c60a2018-01-24 21:02:40 +0300258 if system_has_kms_drm
Dylan Baker4b61b072017-11-15 17:31:32 -0800259 _platforms = 'x11,wayland,drm,surfaceless'
Jon Turney47729092018-02-02 22:25:48 +0000260 elif ['darwin', 'windows', 'cygwin'].contains(host_machine.system())
261 _platforms = 'x11,surfaceless'
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600262 elif ['haiku'].contains(host_machine.system())
263 _platforms = 'haiku'
Dylan Baker4b61b072017-11-15 17:31:32 -0800264 else
Jon Turney47729092018-02-02 22:25:48 +0000265 error('Unknown OS. Please pass -Dplatforms to set platforms. Patches gladly accepted to fix this.')
Dylan Baker4b61b072017-11-15 17:31:32 -0800266 endif
267endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700268if _platforms != ''
269 _split = _platforms.split(',')
Eric Engestromc5ec1552017-10-24 16:08:15 +0100270 with_platform_android = _split.contains('android')
Dylan Bakerd1992252017-09-14 17:57:17 -0700271 with_platform_x11 = _split.contains('x11')
272 with_platform_wayland = _split.contains('wayland')
Dylan Bakerb1b65392017-09-28 22:25:02 -0700273 with_platform_drm = _split.contains('drm')
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600274 with_platform_haiku = _split.contains('haiku')
Dylan Baker108d2572017-10-18 12:20:43 -0700275 with_platform_surfaceless = _split.contains('surfaceless')
276 egl_native_platform = _split[0]
Dylan Bakerd1992252017-09-14 17:57:17 -0700277endif
278
Dylan Baker118a7f02017-11-01 17:42:41 -0700279with_glx = get_option('glx')
280if with_glx == 'auto'
281 if with_dri
282 with_glx = 'dri'
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600283 elif with_platform_haiku
284 with_glx = 'disabled'
Dylan Baker118a7f02017-11-01 17:42:41 -0700285 elif with_gallium
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700286 # Even when building just gallium drivers the user probably wants dri
287 with_glx = 'dri'
Dylan Bakerf74cf042018-02-28 10:13:38 -0800288 with_dri = true
Dylan Baker118a7f02017-11-01 17:42:41 -0700289 elif with_platform_x11 and with_any_opengl and not with_any_vk
290 # The automatic behavior should not be to turn on xlib based glx when
291 # building only vulkan drivers
292 with_glx = 'xlib'
293 else
294 with_glx = 'disabled'
295 endif
296endif
297
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700298if not (with_dri or with_gallium or with_glx == 'xlib' or with_glx == 'gallium-xlib')
Dylan Baker118a7f02017-11-01 17:42:41 -0700299 with_gles1 = false
300 with_gles2 = false
301 with_opengl = false
302 with_any_opengl = false
303 with_shared_glapi = false
304endif
305
Eric Engestrom76e8d612018-02-23 17:08:20 +0000306_gbm = get_option('gbm')
307if _gbm == 'auto'
308 with_gbm = system_has_kms_drm and with_dri
Dylan Baker816bf7d12017-09-28 15:53:53 -0700309else
Eric Engestrom76e8d612018-02-23 17:08:20 +0000310 with_gbm = _gbm == 'true'
311endif
312if with_gbm and not system_has_kms_drm
313 error('GBM only supports DRM/KMS platforms')
Dylan Baker816bf7d12017-09-28 15:53:53 -0700314endif
315
Dylan Baker108d2572017-10-18 12:20:43 -0700316_egl = get_option('egl')
317if _egl == 'auto'
318 with_egl = with_dri and with_shared_glapi and egl_native_platform != ''
Dylan Baker05893312017-10-30 10:27:48 -0700319elif _egl == 'true'
Dylan Baker108d2572017-10-18 12:20:43 -0700320 if not with_dri
321 error('EGL requires dri')
322 elif not with_shared_glapi
323 error('EGL requires shared-glapi')
324 elif egl_native_platform == ''
325 error('No platforms specified, consider -Dplatforms=drm,x11 at least')
Dylan Bakerf74cf042018-02-28 10:13:38 -0800326 elif not ['disabled', 'dri'].contains(with_glx)
327 error('EGL requires dri, but a GLX is being built without dri')
Dylan Baker108d2572017-10-18 12:20:43 -0700328 endif
329 with_egl = true
330else
331 with_egl = false
332endif
333
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700334if with_egl and not (with_platform_drm or with_platform_surfaceless)
335 if with_gallium_radeonsi
336 error('RadeonSI requires drm or surfaceless platform when using EGL')
337 endif
338 if with_gallium_virgl
339 error('Virgl requires drm or surfaceless platform when using EGL')
340 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700341endif
342
Dylan Baker8e611872017-10-11 12:49:31 -0700343pre_args += '-DGLX_USE_TLS'
Dylan Bakera47c5252017-09-22 12:55:00 -0700344if with_glx != 'disabled'
Dylan Baker8d3b1212017-10-18 15:47:11 -0700345 if not (with_platform_x11 and with_any_opengl)
346 if with_glx == 'auto'
347 with_glx = 'disabled'
348 else
349 error('Cannot build GLX support without X11 platform support and at least one OpenGL API')
350 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700351 elif with_glx == 'gallium-xlib'
352 if not with_gallium
353 error('Gallium-xlib based GLX requires at least one gallium driver')
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700354 elif not with_gallium_softpipe
355 error('Gallium-xlib based GLX requires softpipe or llvmpipe.')
Dylan Bakera47c5252017-09-22 12:55:00 -0700356 elif with_dri
357 error('gallium-xlib conflicts with any dri driver')
358 endif
Dylan Baker118a7f02017-11-01 17:42:41 -0700359 elif with_glx == 'xlib'
360 if with_dri
361 error('xlib conflicts with any dri driver')
362 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700363 elif with_glx == 'dri' and not with_dri
364 error('dri based GLX requires at least one DRI driver')
Dylan Bakera47c5252017-09-22 12:55:00 -0700365 endif
366endif
367
368with_glvnd = get_option('glvnd')
Dylan Baker8a36f022017-11-01 10:24:10 -0700369if with_glvnd
370 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
371 error('Cannot build glvnd support for GLX that is not DRI based.')
372 elif with_glx == 'disabled' and not with_egl
373 error('glvnd requires DRI based GLX and/or EGL')
374 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700375endif
376
377# TODO: toggle for this
378with_glx_direct = true
379
Dylan Bakerd1992252017-09-14 17:57:17 -0700380if with_vulkan_icd_dir == ''
381 with_vulkan_icd_dir = join_paths(get_option('datadir'), 'vulkan/icd.d')
382endif
383
Dylan Baker50c28df2017-09-29 17:53:01 -0700384with_dri2 = (with_dri or with_any_vk) and with_dri_platform == 'drm'
Eric Engestrom248c5932018-02-23 17:08:45 +0000385_dri3 = get_option('dri3')
386if _dri3 == 'auto'
Eric Engestrom57b0ccd2017-12-07 16:04:14 +0000387 with_dri3 = system_has_kms_drm and with_dri2
Dylan Baker50c28df2017-09-29 17:53:01 -0700388else
Eric Engestrom248c5932018-02-23 17:08:45 +0000389 with_dri3 = _dri3 == 'true'
Dylan Baker50c28df2017-09-29 17:53:01 -0700390endif
391
392if with_any_vk and (with_platform_x11 and not with_dri3)
393 error('Vulkan drivers require dri3 for X11 support')
394endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700395if with_dri or with_gallium
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600396 if with_glx == 'disabled' and not with_egl and not with_platform_haiku
Dylan Bakera47c5252017-09-22 12:55:00 -0700397 error('building dri or gallium drivers require at least one window system')
398 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700399endif
400
Greg V53f91312018-01-24 21:02:42 +0300401prog_pkgconfig = find_program('pkg-config')
402
Dylan Baker68076b82017-10-30 14:04:21 -0700403_vdpau = get_option('gallium-vdpau')
Eric Engestrom992af0a2017-12-07 16:02:02 +0000404if not system_has_kms_drm
405 if _vdpau == 'true'
406 error('VDPAU state tracker can only be build on unix-like OSes.')
Dylan Baker68076b82017-10-30 14:04:21 -0700407 else
Eric Engestrom992af0a2017-12-07 16:02:02 +0000408 _vdpau = 'false'
Dylan Baker68076b82017-10-30 14:04:21 -0700409 endif
Eric Engestrom992af0a2017-12-07 16:02:02 +0000410elif not with_platform_x11
411 if _vdpau == 'true'
Dylan Baker68076b82017-10-30 14:04:21 -0700412 error('VDPAU state tracker requires X11 support.')
Eric Engestrom992af0a2017-12-07 16:02:02 +0000413 else
414 _vdpau = 'false'
Dylan Baker68076b82017-10-30 14:04:21 -0700415 endif
Eric Engestrom992af0a2017-12-07 16:02:02 +0000416elif not (with_gallium_r300 or with_gallium_r600 or with_gallium_radeonsi or
417 with_gallium_nouveau)
418 if _vdpau == 'true'
419 error('VDPAU state tracker requires at least one of the following gallium drivers: r300, r600, radeonsi, nouveau.')
420 else
421 _vdpau = 'false'
422 endif
423elif _vdpau == 'auto'
424 _vdpau = 'true'
Dylan Baker68076b82017-10-30 14:04:21 -0700425endif
Eric Engestrom992af0a2017-12-07 16:02:02 +0000426with_gallium_vdpau = _vdpau == 'true'
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700427dep_vdpau = null_dep
Dylan Baker68076b82017-10-30 14:04:21 -0700428if with_gallium_vdpau
Eric Engestrom992af0a2017-12-07 16:02:02 +0000429 dep_vdpau = dependency('vdpau', version : '>= 1.1')
Dylan Baker68076b82017-10-30 14:04:21 -0700430 dep_vdpau = declare_dependency(
Greg V53f91312018-01-24 21:02:42 +0300431 compile_args : run_command(prog_pkgconfig, ['vdpau', '--cflags']).stdout().split()
Dylan Baker68076b82017-10-30 14:04:21 -0700432 )
433endif
434
435if with_gallium_vdpau
436 pre_args += '-DHAVE_ST_VDPAU'
437endif
438vdpau_drivers_path = get_option('vdpau-libs-path')
439if vdpau_drivers_path == ''
440 vdpau_drivers_path = join_paths(get_option('libdir'), 'vdpau')
441endif
442
Dylan Baker22a817a2017-10-30 14:32:30 -0700443_xvmc = get_option('gallium-xvmc')
Eric Engestrom724916c2017-12-07 16:02:29 +0000444if not system_has_kms_drm
445 if _xvmc == 'true'
446 error('XVMC state tracker can only be build on unix-like OSes.')
Dylan Baker22a817a2017-10-30 14:32:30 -0700447 else
Eric Engestrom724916c2017-12-07 16:02:29 +0000448 _xvmc = 'false'
Dylan Baker22a817a2017-10-30 14:32:30 -0700449 endif
Eric Engestrom724916c2017-12-07 16:02:29 +0000450elif not with_platform_x11
451 if _xvmc == 'true'
Dylan Baker22a817a2017-10-30 14:32:30 -0700452 error('XVMC state tracker requires X11 support.')
Eric Engestrom724916c2017-12-07 16:02:29 +0000453 else
454 _xvmc = 'false'
Dylan Baker22a817a2017-10-30 14:32:30 -0700455 endif
Eric Engestrom724916c2017-12-07 16:02:29 +0000456elif not (with_gallium_r600 or with_gallium_nouveau)
457 if _xvmc == 'true'
458 error('XVMC state tracker requires at least one of the following gallium drivers: r600, nouveau.')
459 else
460 _xvmc = 'false'
461 endif
462elif _xvmc == 'auto'
463 _xvmc = 'true'
Dylan Baker22a817a2017-10-30 14:32:30 -0700464endif
Eric Engestrom724916c2017-12-07 16:02:29 +0000465with_gallium_xvmc = _xvmc == 'true'
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700466dep_xvmc = null_dep
Dylan Baker22a817a2017-10-30 14:32:30 -0700467if with_gallium_xvmc
Eric Engestrom724916c2017-12-07 16:02:29 +0000468 dep_xvmc = dependency('xvmc', version : '>= 1.0.6')
Dylan Baker22a817a2017-10-30 14:32:30 -0700469endif
470
471xvmc_drivers_path = get_option('xvmc-libs-path')
472if xvmc_drivers_path == ''
473 xvmc_drivers_path = get_option('libdir')
474endif
475
Dylan Baker1d36dc62017-10-30 15:23:06 -0700476_omx = get_option('gallium-omx')
Eric Engestrom86168ed2017-12-07 16:03:04 +0000477if not system_has_kms_drm
Dylan Baker34e852d2018-03-06 10:11:38 -0800478 if ['auto', 'disabled'].contains(_omx)
Gurkirpal Singhbb5e27f2018-01-20 05:12:06 +0530479 _omx = 'disabled'
Dylan Baker34e852d2018-03-06 10:11:38 -0800480 else
481 error('OMX state tracker can only be built on unix-like OSes.')
Dylan Baker1d36dc62017-10-30 15:23:06 -0700482 endif
Eric Engestrom86168ed2017-12-07 16:03:04 +0000483elif not (with_platform_x11 or with_platform_drm)
Dylan Baker34e852d2018-03-06 10:11:38 -0800484 if ['auto', 'disabled'].contains(_omx)
Gurkirpal Singhbb5e27f2018-01-20 05:12:06 +0530485 _omx = 'disabled'
Dylan Baker34e852d2018-03-06 10:11:38 -0800486 else
487 error('OMX state tracker requires X11 or drm platform support.')
Dylan Baker1d36dc62017-10-30 15:23:06 -0700488 endif
Eric Engestrom86168ed2017-12-07 16:03:04 +0000489elif not (with_gallium_r600 or with_gallium_radeonsi or with_gallium_nouveau)
Dylan Baker34e852d2018-03-06 10:11:38 -0800490 if ['auto', 'disabled'].contains(_omx)
Gurkirpal Singhbb5e27f2018-01-20 05:12:06 +0530491 _omx = 'disabled'
Dylan Baker34e852d2018-03-06 10:11:38 -0800492 else
493 error('OMX state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau.')
Eric Engestrom86168ed2017-12-07 16:03:04 +0000494 endif
Eric Engestrom86168ed2017-12-07 16:03:04 +0000495endif
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700496with_gallium_omx = _omx
497dep_omx = null_dep
Gurkirpal Singhe2afa152018-01-20 05:37:53 +0530498dep_omx_other = []
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100499if ['auto', 'bellagio'].contains(_omx)
Dylan Baker34e852d2018-03-06 10:11:38 -0800500 dep_omx = dependency(
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100501 'libomxil-bellagio', required : _omx == 'bellagio'
Dylan Baker34e852d2018-03-06 10:11:38 -0800502 )
503 if dep_omx.found()
Dylan Baker34e852d2018-03-06 10:11:38 -0800504 with_gallium_omx = 'bellagio'
505 endif
506endif
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100507if ['auto', 'tizonia'].contains(_omx)
508 if with_dri and with_egl
Dylan Baker34e852d2018-03-06 10:11:38 -0800509 dep_omx = dependency(
510 'libtizonia', version : '>= 0.10.0',
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100511 required : _omx == 'tizonia',
Dylan Baker34e852d2018-03-06 10:11:38 -0800512 )
513 dep_omx_other = [
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100514 dependency('libtizplatform', required : _omx == 'tizonia'),
515 dependency('tizilheaders', required : _omx == 'tizonia'),
Dylan Baker34e852d2018-03-06 10:11:38 -0800516 ]
517 if dep_omx.found() and dep_omx_other[0].found() and dep_omx_other[1].found()
Dylan Baker34e852d2018-03-06 10:11:38 -0800518 with_gallium_omx = 'tizonia'
Dylan Baker34e852d2018-03-06 10:11:38 -0800519 endif
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100520 elif _omx == 'tizonia'
521 error('OMX-Tizonia state tracker requires dri and egl')
Dylan Baker34e852d2018-03-06 10:11:38 -0800522 endif
Dylan Baker1d36dc62017-10-30 15:23:06 -0700523endif
Mathias Fröhlich795b4652018-03-16 06:34:35 +0100524if _omx == 'auto'
525 with_gallium_omx = 'disabled'
526else
527 with_gallium_omx = _omx
528endif
Dylan Baker1d36dc62017-10-30 15:23:06 -0700529
Mathias Fröhlich880c1712018-03-16 06:34:35 +0100530pre_args += [
531 '-DENABLE_ST_OMX_BELLAGIO=' + (with_gallium_omx == 'bellagio' ? '1' : '0'),
532 '-DENABLE_ST_OMX_TIZONIA=' + (with_gallium_omx == 'tizonia' ? '1' : '0'),
533]
534
535
Dylan Baker1d36dc62017-10-30 15:23:06 -0700536omx_drivers_path = get_option('omx-libs-path')
Mathias Fröhlich880c1712018-03-16 06:34:35 +0100537
Dylan Baker34e852d2018-03-06 10:11:38 -0800538if with_gallium_omx != 'disabled'
Dylan Baker1d36dc62017-10-30 15:23:06 -0700539 # Figure out where to put the omx driver.
540 # FIXME: this could all be vastly simplified by adding a 'defined_variable'
541 # argument to meson's get_pkgconfig_variable method.
542 if omx_drivers_path == ''
543 _omx_libdir = dep_omx.get_pkgconfig_variable('libdir')
544 _omx_drivers_dir = dep_omx.get_pkgconfig_variable('pluginsdir')
545 if _omx_libdir == get_option('libdir')
546 omx_drivers_path = _omx_drivers_dir
547 else
548 _omx_base_dir = []
549 # This will fail on windows. Does OMX run on windows?
550 _omx_libdir = _omx_libdir.split('/')
551 _omx_drivers_dir = _omx_drivers_dir.split('/')
552 foreach o : _omx_drivers_dir
553 if not _omx_libdir.contains(o)
554 _omx_base_dir += o
555 endif
556 endforeach
557 omx_drivers_path = join_paths(get_option('libdir'), _omx_base_dir)
558 endif
559 endif
560endif
Dylan Baker1d36dc62017-10-30 15:23:06 -0700561
Dylan Baker5a785d52017-10-30 15:49:37 -0700562_va = get_option('gallium-va')
Eric Engestromfa5d6162017-12-07 16:03:22 +0000563if not system_has_kms_drm
564 if _va == 'true'
565 error('VA state tracker can only be built on unix-like OSes.')
Dylan Baker5a785d52017-10-30 15:49:37 -0700566 else
Eric Engestromfa5d6162017-12-07 16:03:22 +0000567 _va = 'false'
Dylan Baker5a785d52017-10-30 15:49:37 -0700568 endif
Eric Engestromfa5d6162017-12-07 16:03:22 +0000569elif not (with_platform_x11 or with_platform_drm)
570 if _va == 'true'
Dylan Baker5a785d52017-10-30 15:49:37 -0700571 error('VA state tracker requires X11 or drm or wayland platform support.')
Eric Engestromfa5d6162017-12-07 16:03:22 +0000572 else
573 _va = 'false'
Dylan Baker5a785d52017-10-30 15:49:37 -0700574 endif
Eric Engestromfa5d6162017-12-07 16:03:22 +0000575elif not (with_gallium_r600 or with_gallium_radeonsi or with_gallium_nouveau)
576 if _va == 'true'
577 error('VA state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau.')
578 else
579 _va = 'false'
580 endif
581elif _va == 'auto'
582 _va = 'true'
Dylan Baker5a785d52017-10-30 15:49:37 -0700583endif
Eric Engestromfa5d6162017-12-07 16:03:22 +0000584with_gallium_va = _va == 'true'
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700585dep_va = null_dep
Dylan Baker5a785d52017-10-30 15:49:37 -0700586if with_gallium_va
Eric Engestromfa5d6162017-12-07 16:03:22 +0000587 dep_va = dependency('libva', version : '>= 0.38.0')
Dylan Baker424e6542018-01-18 10:03:24 -0800588 dep_va_headers = declare_dependency(
Greg V53f91312018-01-24 21:02:42 +0300589 compile_args : run_command(prog_pkgconfig, ['libva', '--cflags']).stdout().split()
Dylan Baker5a785d52017-10-30 15:49:37 -0700590 )
591endif
592
593va_drivers_path = get_option('va-libs-path')
594if va_drivers_path == ''
595 va_drivers_path = join_paths(get_option('libdir'), 'dri')
596endif
597
Dylan Baker0ba909f2017-10-30 17:40:30 -0700598_xa = get_option('gallium-xa')
Eric Engestrom2f0db332017-12-07 16:03:40 +0000599if not system_has_kms_drm
600 if _xa == 'true'
601 error('XA state tracker can only be built on unix-like OSes.')
Dylan Baker0ba909f2017-10-30 17:40:30 -0700602 else
Eric Engestrom2f0db332017-12-07 16:03:40 +0000603 _xa = 'false'
Dylan Baker0ba909f2017-10-30 17:40:30 -0700604 endif
Eric Engestrom2f0db332017-12-07 16:03:40 +0000605elif not (with_gallium_nouveau or with_gallium_freedreno or with_gallium_i915
606 or with_gallium_svga)
607 if _xa == 'true'
Dylan Baker0ba909f2017-10-30 17:40:30 -0700608 error('XA state tracker requires at least one of the following gallium drivers: nouveau, freedreno, i915, svga.')
Eric Engestrom2f0db332017-12-07 16:03:40 +0000609 else
610 _xa = 'false'
Dylan Baker0ba909f2017-10-30 17:40:30 -0700611 endif
Dylan Baker0ba909f2017-10-30 17:40:30 -0700612endif
Eric Engestrom2f0db332017-12-07 16:03:40 +0000613with_gallium_xa = _xa != 'false'
Dylan Baker0ba909f2017-10-30 17:40:30 -0700614
Dylan Baker6b4c7042017-11-13 17:58:51 -0800615d3d_drivers_path = get_option('d3d-drivers-path')
616if d3d_drivers_path == ''
617 d3d_drivers_path = join_paths(get_option('libdir'), 'd3d')
618endif
619
620with_gallium_st_nine = get_option('gallium-nine')
621if with_gallium_st_nine
622 if not with_gallium_softpipe
623 error('The nine state tracker requires gallium softpipe/llvmpipe.')
624 elif not (with_gallium_radeonsi or with_gallium_nouveau or with_gallium_r600
625 or with_gallium_r300 or with_gallium_svga or with_gallium_i915)
626 error('The nine state tracker requires at least on non-swrast gallium driver.')
627 endif
628 if not with_dri3
629 error('Using nine with wine requires dri3')
630 endif
631endif
632
Dylan Baker42ea0632017-12-08 15:26:00 -0800633_opencl = get_option('gallium-opencl')
Dylan Baker21bca272018-01-08 17:31:55 -0800634if _opencl != 'disabled'
Dylan Baker42ea0632017-12-08 15:26:00 -0800635 if not with_gallium
636 error('OpenCL Clover implementation requires at least one gallium driver.')
637 endif
638
639 # TODO: alitvec?
640 dep_clc = dependency('libclc')
641 with_gallium_opencl = true
642 with_opencl_icd = _opencl == 'icd'
643else
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700644 dep_clc = null_dep
Dylan Baker42ea0632017-12-08 15:26:00 -0800645 with_gallium_opencl = false
646 with_gallium_icd = false
647endif
648
Dylan Baker108d2572017-10-18 12:20:43 -0700649gl_pkgconfig_c_flags = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700650if with_platform_x11
Dylan Bakerf74cf042018-02-28 10:13:38 -0800651 if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm')
Dylan Baker50c28df2017-09-29 17:53:01 -0700652 pre_args += '-DHAVE_X11_PLATFORM'
653 endif
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700654 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
Dylan Baker118a7f02017-11-01 17:42:41 -0700655 pre_args += '-DUSE_XSHM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700656 else
657 pre_args += '-DGLX_INDIRECT_RENDERING'
658 if with_glx_direct
659 pre_args += '-DGLX_DIRECT_RENDERING'
660 endif
661 if with_dri_platform == 'drm'
662 pre_args += '-DGLX_USE_DRM'
Dylan Baker569628d2017-10-27 21:08:07 -0700663 elif with_dri_platform == 'apple'
664 pre_args += '-DGLX_USE_APPLEGL'
Jon Turney9cdd41b2017-11-23 13:40:06 +0000665 elif with_dri_platform == 'windows'
666 pre_args += '-DGLX_USE_WINDOWSGL'
Dylan Baker50c28df2017-09-29 17:53:01 -0700667 endif
668 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700669else
670 pre_args += '-DMESA_EGL_NO_X11_HEADERS'
671 gl_pkgconfig_c_flags += '-DMESA_EGL_NO_X11_HEADERS'
672endif
673if with_platform_drm
674 if with_egl and not with_gbm
675 error('EGL drm platform requires gbm')
676 endif
677 pre_args += '-DHAVE_DRM_PLATFORM'
678endif
679if with_platform_surfaceless
680 pre_args += '-DHAVE_SURFACELESS_PLATFORM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700681endif
Eric Engestromc5ec1552017-10-24 16:08:15 +0100682if with_platform_android
683 dep_android = [
684 dependency('cutils'),
685 dependency('hardware'),
686 dependency('sync'),
687 ]
688 pre_args += '-DHAVE_ANDROID_PLATFORM'
689endif
Alexander von Gluck IV834d2212018-02-16 16:56:31 -0600690if with_platform_haiku
691 pre_args += '-DHAVE_HAIKU_PLATFORM'
692endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700693
Dylan Bakerd1992252017-09-14 17:57:17 -0700694prog_python2 = find_program('python2')
Dylan Baker9342a7d2017-09-28 10:48:30 -0700695has_mako = run_command(prog_python2, '-c', 'import mako')
696if has_mako.returncode() != 0
697 error('Python (2.x) mako module required to build mesa.')
698endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700699
700cc = meson.get_compiler('c')
701if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6')
Eric Engestrom1262e822017-09-29 15:25:18 +0100702 error('When using GCC, version 4.4.6 or later is required.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700703endif
704
Eric Engestrom1e6f9ea2017-11-06 17:18:06 +0000705# Define DEBUG for debug builds only (debugoptimized is not included on this one)
706if get_option('buildtype') == 'debug'
Dylan Bakerd1992252017-09-14 17:57:17 -0700707 pre_args += '-DDEBUG'
708endif
709
Dylan Baker673dda82017-09-20 11:53:29 -0700710if get_option('shader-cache')
711 pre_args += '-DENABLE_SHADER_CACHE'
712elif with_amd_vk
713 error('Radv requires shader cache support')
714endif
715
Dylan Bakerd1992252017-09-14 17:57:17 -0700716# Check for GCC style builtins
717foreach b : ['bswap32', 'bswap64', 'clz', 'clzll', 'ctz', 'expect', 'ffs',
718 'ffsll', 'popcount', 'popcountll', 'unreachable']
719 if cc.has_function(b)
720 pre_args += '-DHAVE___BUILTIN_@0@'.format(b.to_upper())
721 endif
722endforeach
723
Dylan Baker673dda82017-09-20 11:53:29 -0700724# check for GCC __attribute__
Dylan Bakerd1992252017-09-14 17:57:17 -0700725foreach a : ['const', 'flatten', 'malloc', 'pure', 'unused',
726 'warn_unused_result', 'weak',]
727 if cc.compiles('int foo(void) __attribute__((@0@));'.format(a),
728 name : '__attribute__((@0@))'.format(a))
729 pre_args += '-DHAVE_FUNC_ATTRIBUTE_@0@'.format(a.to_upper())
730 endif
731endforeach
732if cc.compiles('int foo(const char *p, ...) __attribute__((format(printf, 1, 2)));',
733 name : '__attribute__((format(...)))')
734 pre_args += '-DHAVE_FUNC_ATTRIBUTE_FORMAT'
735endif
736if cc.compiles('struct __attribute__((packed)) foo { int bar; };',
737 name : '__attribute__((packed))')
738 pre_args += '-DHAVE_FUNC_ATTRIBUTE_PACKED'
739endif
740if cc.compiles('int *foo(void) __attribute__((returns_nonnull));',
741 name : '__attribute__((returns_nonnull))')
Marc Dietrich911ca582018-01-23 15:49:43 +0100742 pre_args += '-DHAVE_FUNC_ATTRIBUTE_RETURNS_NONNULL'
Dylan Bakerd1992252017-09-14 17:57:17 -0700743endif
744if cc.compiles('''int foo_def(void) __attribute__((visibility("default")));
745 int foo_hid(void) __attribute__((visibility("hidden")));
746 int foo_int(void) __attribute__((visibility("internal")));
747 int foo_pro(void) __attribute__((visibility("protected")));''',
748 name : '__attribute__((visibility(...)))')
Marc Dietrich911ca582018-01-23 15:49:43 +0100749 pre_args += '-DHAVE_FUNC_ATTRIBUTE_VISIBILITY'
Dylan Bakerd1992252017-09-14 17:57:17 -0700750endif
751if cc.compiles('int foo(void) { return 0; } int bar(void) __attribute__((alias("foo")));',
752 name : '__attribute__((alias(...)))')
753 pre_args += '-DHAVE_FUNC_ATTRIBUTE_ALIAS'
754endif
Jason Ekstrand0c49aa02017-08-16 17:16:45 -0700755if cc.compiles('int foo(void) __attribute__((__noreturn__));',
756 name : '__attribute__((__noreturn__))')
757 pre_args += '-DHAVE_FUNC_ATTRIBUTE_NORETURN'
758endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700759
760# TODO: this is very incomplete
Jon Turneydbe36e32017-11-23 13:42:00 +0000761if ['linux', 'cygwin'].contains(host_machine.system())
Dylan Bakerd1992252017-09-14 17:57:17 -0700762 pre_args += '-D_GNU_SOURCE'
763endif
764
Dylan Baker8e5988e2018-03-22 11:35:08 -0700765# Check for generic C arguments
Dylan Bakerd1992252017-09-14 17:57:17 -0700766c_args = []
767foreach a : ['-Wall', '-Werror=implicit-function-declaration',
768 '-Werror=missing-prototypes', '-fno-math-errno',
769 '-fno-trapping-math', '-Qunused-arguments']
770 if cc.has_argument(a)
771 c_args += a
772 endif
773endforeach
774c_vis_args = []
775if cc.has_argument('-fvisibility=hidden')
776 c_vis_args += '-fvisibility=hidden'
777endif
778
Dylan Baker8e5988e2018-03-22 11:35:08 -0700779# Check for generic C++ arguments
780cpp = meson.get_compiler('cpp')
781cpp_args = []
782foreach a : ['-Wall', '-fno-math-errno', '-fno-trapping-math',
783 '-Qunused-arguments']
784 if cpp.has_argument(a)
785 cpp_args += a
786 endif
787endforeach
788
Marc Dietrichd93fabb2017-11-29 22:25:05 +0100789# For some reason, the test for -Wno-foo always succeeds with gcc, even if the
790# option is not supported. Hence, check for -Wfoo instead.
791if cpp.has_argument('-Wnon-virtual-dtor')
792 cpp_args += '-Wno-non-virtual-dtor'
793endif
794
795no_override_init_args = []
796foreach a : ['override-init', 'initializer-overrides']
797 if cc.has_argument('-W' + a)
798 no_override_init_args += '-Wno-' + a
799 endif
800endforeach
801
Dylan Bakerd1992252017-09-14 17:57:17 -0700802cpp_vis_args = []
803if cpp.has_argument('-fvisibility=hidden')
804 cpp_vis_args += '-fvisibility=hidden'
805endif
806
807# Check for C and C++ arguments for MSVC2013 compatibility. These are only used
808# in parts of the mesa code base that need to compile with old versions of
809# MSVC, mainly common code
810c_msvc_compat_args = []
811cpp_msvc_compat_args = []
812foreach a : ['-Werror=pointer-arith', '-Werror=vla']
813 if cc.has_argument(a)
814 c_msvc_compat_args += a
815 endif
816 if cpp.has_argument(a)
817 cpp_msvc_compat_args += a
818 endif
819endforeach
820
Dylan Baker84486f62017-11-15 16:09:22 -0800821if host_machine.cpu_family().startswith('x86')
Scott D Phillips0b8d38b2018-01-24 11:24:12 -0800822 pre_args += '-DUSE_SSE41'
Dylan Baker84486f62017-11-15 16:09:22 -0800823 with_sse41 = true
824 sse41_args = ['-msse4.1']
825
826 # GCC on x86 (not x86_64) with -msse* assumes a 16 byte aligned stack, but
827 # that's not guaranteed
828 if host_machine.cpu_family() == 'x86'
829 sse41_args += '-mstackrealign'
830 endif
831else
832 with_sse41 = false
833 sse41_args = []
834endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700835
836# Check for GCC style atomics
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700837dep_atomic = null_dep
Thierry Reding498faea2018-02-23 14:13:27 +0100838
Dylan Bakerd1992252017-09-14 17:57:17 -0700839if cc.compiles('int main() { int n; return __atomic_load_n(&n, __ATOMIC_ACQUIRE); }',
840 name : 'GCC atomic builtins')
841 pre_args += '-DUSE_GCC_ATOMIC_BUILTINS'
Thierry Reding498faea2018-02-23 14:13:27 +0100842
843 # Not all atomic calls can be turned into lock-free instructions, in which
844 # GCC will make calls into the libatomic library. Check whether we need to
845 # link with -latomic.
846 #
847 # This can happen for 64-bit atomic operations on 32-bit architectures such
848 # as ARM.
849 if not cc.links('''#include <stdint.h>
850 int main() {
851 uint64_t n;
852 return (int)__atomic_load_n(&n, __ATOMIC_ACQUIRE);
853 }''',
854 name : 'GCC atomic builtins required -latomic')
855 dep_atomic = cc.find_library('atomic')
856 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700857endif
858if not cc.links('''#include <stdint.h>
859 uint64_t v;
860 int main() {
861 return __sync_add_and_fetch(&v, (uint64_t)1);
862 }''',
863 name : 'GCC 64bit atomics')
864 pre_args += '-DMISSING_64_BIT_ATOMICS'
865endif
866
867# TODO: endian
868# TODO: powr8
869# TODO: shared/static? Is this even worth doing?
870
Dylan Baker2d62fc02017-11-15 16:53:40 -0800871# Building x86 assembly code requires running x86 binaries. It is possible for
872# x86_64 OSes to run x86 binaries, so don't disable asm in those cases
873# TODO: it should be possible to use an exe_wrapper to run the binary during
874# the build.
875if meson.is_cross_build()
876 if not (build_machine.cpu_family() == 'x86_64' and host_machine.cpu_family() == 'x86'
877 and build_machine.system() == host_machine.system())
878 message('Cross compiling to x86 from non-x86, disabling asm')
879 with_asm = false
880 endif
Dylan Baker32180562017-09-20 20:11:32 -0700881endif
882
883with_asm_arch = ''
884if with_asm
885 # TODO: SPARC and PPC
886 if host_machine.cpu_family() == 'x86'
Greg Vc38c60a2018-01-24 21:02:40 +0300887 if system_has_kms_drm
Dylan Baker32180562017-09-20 20:11:32 -0700888 with_asm_arch = 'x86'
889 pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM',
890 '-DUSE_SSE_ASM']
891 endif
892 elif host_machine.cpu_family() == 'x86_64'
Greg Vc38c60a2018-01-24 21:02:40 +0300893 if system_has_kms_drm
Dylan Baker32180562017-09-20 20:11:32 -0700894 with_asm_arch = 'x86_64'
895 pre_args += ['-DUSE_X86_64_ASM']
896 endif
897 elif host_machine.cpu_family() == 'arm'
Greg Vc38c60a2018-01-24 21:02:40 +0300898 if system_has_kms_drm
Dylan Baker32180562017-09-20 20:11:32 -0700899 with_asm_arch = 'arm'
900 pre_args += ['-DUSE_ARM_ASM']
901 endif
902 elif host_machine.cpu_family() == 'aarch64'
Greg Vc38c60a2018-01-24 21:02:40 +0300903 if system_has_kms_drm
Dylan Baker32180562017-09-20 20:11:32 -0700904 with_asm_arch = 'aarch64'
905 pre_args += ['-DUSE_AARCH64_ASM']
906 endif
907 endif
908endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700909
910# Check for standard headers and functions
911if cc.has_header_symbol('sys/sysmacros.h', 'major')
912 pre_args += '-DMAJOR_IN_SYSMACROS'
913elif cc.has_header_symbol('sys/mkdev.h', 'major')
914 pre_args += '-DMAJOR_IN_MKDEV'
915endif
916
Eric Engestromcbee1bf2018-03-21 17:04:06 +0000917foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h', 'endian.h']
Eric Engestrom1e36fe52018-03-23 17:18:56 +0000918 if cc.compiles('#include <@0@>'.format(h), name : '@0@'.format(h))
Dylan Bakerd1992252017-09-14 17:57:17 -0700919 pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify())
920 endif
921endforeach
922
Vinson Lee8c1e4b12017-11-28 23:16:58 -0800923foreach f : ['strtof', 'mkostemp', 'posix_memalign', 'timespec_get', 'memfd_create']
Dylan Bakerd1992252017-09-14 17:57:17 -0700924 if cc.has_function(f)
925 pre_args += '-DHAVE_@0@'.format(f.to_upper())
926 endif
927endforeach
928
929# strtod locale support
930if cc.links('''
931 #define _GNU_SOURCE
932 #include <stdlib.h>
933 #include <locale.h>
934 #ifdef HAVE_XLOCALE_H
935 #include <xlocale.h>
936 #endif
937 int main() {
938 locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
939 const char *s = "1.0";
940 char *end;
941 double d = strtod_l(s, end, loc);
Eric Engestromab0809e2017-11-21 14:24:01 +0000942 float f = strtof_l(s, end, loc);
Dylan Bakerd1992252017-09-14 17:57:17 -0700943 freelocale(loc);
944 return 0;
945 }''',
946 extra_args : pre_args,
947 name : 'strtod has locale support')
948 pre_args += '-DHAVE_STRTOD_L'
949endif
950
951# Check for some linker flags
952ld_args_bsymbolic = []
Dylan Bakere21e0a62017-09-30 13:15:52 -0700953if cc.links('int main() { return 0; }', args : '-Wl,-Bsymbolic', name : 'Bsymbolic')
Dylan Bakerd1992252017-09-14 17:57:17 -0700954 ld_args_bsymbolic += '-Wl,-Bsymbolic'
955endif
956ld_args_gc_sections = []
957if cc.links('static char unused() { return 5; } int main() { return 0; }',
Dylan Bakere21e0a62017-09-30 13:15:52 -0700958 args : '-Wl,--gc-sections', name : 'gc-sections')
Dylan Bakerd1992252017-09-14 17:57:17 -0700959 ld_args_gc_sections += '-Wl,--gc-sections'
960endif
Dylan Bakere21e0a62017-09-30 13:15:52 -0700961with_ld_version_script = false
962if cc.links('int main() { return 0; }',
963 args : '-Wl,--version-script=@0@'.format(
964 join_paths(meson.source_root(), 'build-support/conftest.map')),
965 name : 'version-script')
966 with_ld_version_script = true
967endif
968with_ld_dynamic_list = false
969if cc.links('int main() { return 0; }',
970 args : '-Wl,--dynamic-list=@0@'.format(
971 join_paths(meson.source_root(), 'build-support/conftest.dyn')),
972 name : 'dynamic-list')
973 with_ld_dynamic_list = true
974endif
Jon Turney80bc41b2017-12-03 21:58:12 +0000975ld_args_build_id = []
976if build_machine.system() != 'darwin'
977 ld_args_build_id += '-Wl,--build-id=sha1'
978endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700979
980# check for dl support
981if cc.has_function('dlopen')
Dylan Bakerb5f92b62018-03-15 13:30:22 -0700982 dep_dl = null_dep
Dylan Bakerd1992252017-09-14 17:57:17 -0700983else
984 dep_dl = cc.find_library('dl')
985endif
Dylan Baker32180562017-09-20 20:11:32 -0700986if cc.has_function('dladdr', dependencies : dep_dl)
987 # This is really only required for megadrivers
988 pre_args += '-DHAVE_DLADDR'
Dylan Bakerd1992252017-09-14 17:57:17 -0700989endif
990
991if cc.has_function('dl_iterate_phdr')
992 pre_args += '-DHAVE_DL_ITERATE_PHDR'
Dylan Bakere89842e2017-11-15 17:07:37 -0800993elif with_intel_vk
994 error('Intel "Anvil" Vulkan driver requires the dl_iterate_phdr function')
995elif with_dri_i965 and get_option('shader-cache')
996 error('Intel i965 GL driver requires dl_iterate_phdr when built with shader caching.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700997endif
998
999# Determine whether or not the rt library is needed for time functions
1000if cc.has_function('clock_gettime')
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001001 dep_clock = null_dep
Dylan Bakerd1992252017-09-14 17:57:17 -07001002else
1003 dep_clock = cc.find_library('rt')
1004endif
1005
1006# TODO: some of these may be conditional
1007dep_zlib = dependency('zlib', version : '>= 1.2.3')
Grazvydas Ignotas87f72342017-12-29 01:29:10 +02001008pre_args += '-DHAVE_ZLIB'
Dylan Bakerd1992252017-09-14 17:57:17 -07001009dep_thread = dependency('threads')
Jon Turney8ceccbf2017-11-13 10:13:39 +00001010if dep_thread.found() and host_machine.system() != 'windows'
Dylan Baker50c28df2017-09-29 17:53:01 -07001011 pre_args += '-DHAVE_PTHREAD'
1012endif
Dylan Baker42ea0632017-12-08 15:26:00 -08001013if with_amd_vk or with_gallium_radeonsi or with_gallium_r600 or with_gallium_opencl
Dylan Baker5060c512017-10-25 18:55:38 -07001014 dep_elf = dependency('libelf', required : false)
1015 if not dep_elf.found()
1016 dep_elf = cc.find_library('elf')
1017 endif
1018else
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001019 dep_elf = null_dep
Dylan Bakercc4f5872017-09-27 11:30:21 -07001020endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001021dep_expat = dependency('expat')
1022# this only exists on linux so either this is linux and it will be found, or
1023# its not linux and and wont
1024dep_m = cc.find_library('m', required : false)
Dylan Baker66f97f62017-09-30 09:03:51 -07001025
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001026# Check for libdrm. various drivers have different libdrm version requirements,
1027# but we always want to use the same version for all libdrm modules. That means
1028# even if driver foo requires 2.4.0 and driver bar requires 2.4.3, if foo and
1029# bar are both on use 2.4.3 for both of them
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001030dep_libdrm_amdgpu = null_dep
1031dep_libdrm_radeon = null_dep
1032dep_libdrm_nouveau = null_dep
1033dep_libdrm_etnaviv = null_dep
1034dep_libdrm_freedreno = null_dep
1035dep_libdrm_intel = null_dep
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001036
1037_drm_amdgpu_ver = '2.4.91'
1038_drm_radeon_ver = '2.4.71'
1039_drm_nouveau_ver = '2.4.66'
Christian Gmeiner72d20432018-03-25 22:29:56 +02001040_drm_etnaviv_ver = '2.4.89'
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001041_drm_freedreno_ver = '2.4.91'
1042_drm_intel_ver = '2.4.75'
1043_drm_ver = '2.4.75'
1044
1045_libdrm_checks = [
1046 ['intel', with_dri_i915 or with_gallium_i915],
1047 ['amdgpu', with_amd_vk or with_gallium_radeonsi],
1048 ['radeon', (with_gallium_radeonsi or with_dri_r100 or with_dri_r200 or
1049 with_gallium_r300 or with_gallium_r600)],
1050 ['nouveau', (with_gallium_nouveau or with_dri_nouveau)],
1051 ['etnaviv', with_gallium_etnaviv],
1052 ['freedreno', with_gallium_freedreno],
1053]
1054
1055# Loop over the enables versions and get the highest libdrm requirement for all
1056# active drivers.
1057foreach d : _libdrm_checks
1058 ver = get_variable('_drm_@0@_ver'.format(d[0]))
1059 if d[1] and ver.version_compare('>' + _drm_ver)
1060 _drm_ver = ver
1061 endif
1062endforeach
1063
1064# Then get each libdrm module
1065foreach d : _libdrm_checks
1066 if d[1]
1067 set_variable(
1068 'dep_libdrm_' + d[0],
Dylan Bakerb9ad5282018-04-17 13:47:17 -07001069 dependency('libdrm_' + d[0], version : '>=' + _drm_ver)
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001070 )
1071 endif
1072endforeach
Dylan Baker673dda82017-09-20 11:53:29 -07001073
Dylan Bakeracadf062018-03-12 15:58:40 -07001074with_gallium_drisw_kms = false
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001075dep_libdrm = dependency(
1076 'libdrm', version : '>=' + _drm_ver,
Dylan Bakerb9ad5282018-04-17 13:47:17 -07001077 required : with_dri2 or with_dri3
Dylan Bakerc445b1d2018-03-12 16:32:59 -07001078)
Dylan Bakeracadf062018-03-12 15:58:40 -07001079if dep_libdrm.found()
1080 pre_args += '-DHAVE_LIBDRM'
1081 if with_dri_platform == 'drm' and with_dri
1082 with_gallium_drisw_kms = true
1083 endif
1084endif
1085
Dylan Baker673dda82017-09-20 11:53:29 -07001086llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit']
Dylan Baker5060c512017-10-25 18:55:38 -07001087if with_amd_vk or with_gallium_radeonsi or with_gallium_r600
Dylan Baker673dda82017-09-20 11:53:29 -07001088 llvm_modules += ['amdgpu', 'bitreader', 'ipo']
Dylan Baker5060c512017-10-25 18:55:38 -07001089 if with_gallium_r600
1090 llvm_modules += 'asmparser'
1091 endif
Dylan Baker673dda82017-09-20 11:53:29 -07001092endif
Dylan Baker42ea0632017-12-08 15:26:00 -08001093if with_gallium_opencl
1094 llvm_modules += [
1095 'all-targets', 'linker', 'coverage', 'instrumentation', 'ipo', 'irreader',
1096 'lto', 'option', 'objcarcopts', 'profiledata',
1097 ]
1098 # TODO: optional modules
1099endif
Dylan Baker48f64e52017-11-17 16:37:50 -08001100
Andres Gomez36ac4852018-02-14 00:42:57 +02001101if with_amd_vk or with_gallium_radeonsi or with_gallium_swr
Dylan Bakerc75a4e52018-02-02 10:45:12 -08001102 _llvm_version = '>= 4.0.0'
Andres Gomez36ac4852018-02-14 00:42:57 +02001103elif with_gallium_opencl or with_gallium_r600
Dylan Bakerc75a4e52018-02-02 10:45:12 -08001104 _llvm_version = '>= 3.9.0'
1105else
1106 _llvm_version = '>= 3.3.0'
1107endif
1108
Dylan Baker48f64e52017-11-17 16:37:50 -08001109_llvm = get_option('llvm')
1110if _llvm == 'auto'
Eric Anholtd975e692017-11-08 11:52:09 -08001111 dep_llvm = dependency(
Dylan Bakerc75a4e52018-02-02 10:45:12 -08001112 'llvm', version : _llvm_version, modules : llvm_modules,
Dylan Baker42ea0632017-12-08 15:26:00 -08001113 required : with_amd_vk or with_gallium_radeonsi or with_gallium_swr or with_gallium_opencl,
Eric Anholtd975e692017-11-08 11:52:09 -08001114 )
Dylan Baker48f64e52017-11-17 16:37:50 -08001115 with_llvm = dep_llvm.found()
1116elif _llvm == 'true'
Dylan Bakerc75a4e52018-02-02 10:45:12 -08001117 dep_llvm = dependency('llvm', version : _llvm_version, modules : llvm_modules)
Dylan Baker48f64e52017-11-17 16:37:50 -08001118 with_llvm = true
1119else
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001120 dep_llvm = null_dep
Dylan Baker48f64e52017-11-17 16:37:50 -08001121 with_llvm = false
1122endif
1123if with_llvm
1124 _llvm_version = dep_llvm.version().split('.')
Greg V8fae5ed2018-01-24 21:02:43 +03001125 # Development versions of LLVM have an 'svn' or 'git' suffix, we don't want
1126 # that for our version checks.
1127 # svn suffixes are stripped by meson as of 0.43, and git suffixes are
1128 # strippped as of 0.44, but we support older meson versions.
Andres Gomez98f76502018-02-28 23:15:07 +02001129
1130 # 3 digits versions in LLVM only started from 3.4.1 on
1131 if dep_llvm.version().version_compare('>= 3.4.1')
1132 _llvm_patch = _llvm_version[2]
1133 else
1134 _llvm_patch = '0'
1135 endif
1136
Dylan Baker48f64e52017-11-17 16:37:50 -08001137 if _llvm_patch.endswith('svn')
1138 _llvm_patch = _llvm_patch.split('s')[0]
Greg V8fae5ed2018-01-24 21:02:43 +03001139 elif _llvm_patch.contains('git')
1140 _llvm_patch = _llvm_patch.split('g')[0]
Dylan Baker673dda82017-09-20 11:53:29 -07001141 endif
Dylan Baker48f64e52017-11-17 16:37:50 -08001142 pre_args += [
Marc Dietricha2a1b0e2018-01-24 22:03:51 +01001143 '-DHAVE_LLVM=0x0@0@0@1@'.format(_llvm_version[0], _llvm_version[1]),
Dylan Baker48f64e52017-11-17 16:37:50 -08001144 '-DMESA_LLVM_VERSION_PATCH=@0@'.format(_llvm_patch),
1145 ]
Dylan Bakere0b037d2017-11-29 17:50:05 -08001146elif with_amd_vk or with_gallium_radeonsi or with_gallium_swr
Marek Olšák3bf1e032018-02-02 19:26:49 +01001147 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 -07001148endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001149
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001150dep_glvnd = null_dep
Dylan Bakera47c5252017-09-22 12:55:00 -07001151if with_glvnd
1152 dep_glvnd = dependency('libglvnd', version : '>= 0.2.0')
1153 pre_args += '-DUSE_LIBGLVND=1'
1154endif
1155
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +02001156if with_valgrind != 'false'
1157 dep_valgrind = dependency('valgrind', required : with_valgrind == 'true')
1158 if dep_valgrind.found()
1159 pre_args += '-DHAVE_VALGRIND'
1160 endif
1161else
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001162 dep_valgrind = null_dep
Dylan Bakerd1992252017-09-14 17:57:17 -07001163endif
1164
1165# pthread stubs. Lets not and say we didn't
1166
Dylan Baker32180562017-09-20 20:11:32 -07001167prog_bison = find_program('bison', required : with_any_opengl)
1168prog_flex = find_program('flex', required : with_any_opengl)
1169
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001170dep_selinux = null_dep
Eric Engestrom4b9421d2017-10-26 16:19:41 +01001171if get_option('selinux')
1172 dep_selinux = dependency('libselinux')
1173 pre_args += '-DMESA_SELINUX'
1174endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001175
1176# TODO: llvm-prefix and llvm-shared-libs
1177
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +02001178if with_libunwind != 'false'
1179 dep_unwind = dependency('libunwind', required : with_libunwind == 'true')
1180 if dep_unwind.found()
1181 pre_args += '-DHAVE_LIBUNWIND'
1182 endif
1183else
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001184 dep_unwind = null_dep
Dylan Bakerb1b65392017-09-28 22:25:02 -07001185endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001186
Dylan Bakerd1992252017-09-14 17:57:17 -07001187# TODO: gallium-hud
1188
Dylan Bakercbbd5bb2017-10-20 21:48:18 -07001189if with_osmesa != 'none'
1190 if with_osmesa == 'classic' and not with_dri_swrast
1191 error('OSMesa classic requires dri (classic) swrast.')
1192 endif
Dylan Bakerf121a662017-10-24 15:52:57 -07001193 if with_osmesa == 'gallium' and not with_gallium_softpipe
1194 error('OSMesa gallium requires gallium softpipe or llvmpipe.')
1195 endif
Dylan Bakercbbd5bb2017-10-20 21:48:18 -07001196 osmesa_lib_name = 'OSMesa'
1197 osmesa_bits = get_option('osmesa-bits')
1198 if osmesa_bits != '8'
1199 if with_dri or with_glx != 'disabled'
1200 error('OSMesa bits must be 8 if building glx or dir based drivers')
1201 endif
1202 osmesa_lib_name = osmesa_lib_name + osmesa_bits
1203 pre_args += [
1204 '-DCHAN_BITS=@0@'.format(osmesa_bits), '-DDEFAULT_SOFTWARE_DEPTH_BITS=31'
1205 ]
1206 endif
1207endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001208
Dylan Bakerd1992252017-09-14 17:57:17 -07001209# TODO: symbol mangling
1210
Dylan Bakerd1992252017-09-14 17:57:17 -07001211if with_platform_wayland
1212 prog_wl_scanner = find_program('wayland-scanner')
1213 dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.8')
1214 dep_wayland_client = dependency('wayland-client', version : '>=1.11')
1215 dep_wayland_server = dependency('wayland-server', version : '>=1.11')
Dylan Baker108d2572017-10-18 12:20:43 -07001216 wayland_dmabuf_xml = join_paths(
1217 dep_wl_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable',
1218 'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'
1219 )
1220 pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED']
Dylan Bakerd1992252017-09-14 17:57:17 -07001221else
1222 prog_wl_scanner = []
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001223 dep_wl_protocols = null_dep
1224 dep_wayland_client = null_dep
1225 dep_wayland_server = null_dep
Dylan Baker108d2572017-10-18 12:20:43 -07001226 wayland_dmabuf_xml = ''
Dylan Bakerd1992252017-09-14 17:57:17 -07001227endif
1228
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001229dep_x11 = null_dep
1230dep_xext = null_dep
1231dep_xdamage = null_dep
1232dep_xfixes = null_dep
1233dep_x11_xcb = null_dep
1234dep_xcb = null_dep
1235dep_xcb_glx = null_dep
1236dep_xcb_dri2 = null_dep
1237dep_xcb_dri3 = null_dep
1238dep_dri2proto = null_dep
1239dep_glproto = null_dep
1240dep_xxf86vm = null_dep
1241dep_xcb_dri3 = null_dep
1242dep_xcb_present = null_dep
1243dep_xcb_sync = null_dep
1244dep_xcb_xfixes = null_dep
1245dep_xshmfence = null_dep
Dylan Bakerd1992252017-09-14 17:57:17 -07001246if with_platform_x11
Dylan Bakerad9c2f52017-11-02 13:36:44 -07001247 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
Dylan Baker118a7f02017-11-01 17:42:41 -07001248 dep_x11 = dependency('x11')
1249 dep_xext = dependency('xext')
1250 dep_xcb = dependency('xcb')
Jon Turney6f0ce262017-11-23 13:51:43 +00001251 elif with_glx == 'dri'
Dylan Baker50c28df2017-09-29 17:53:01 -07001252 dep_x11 = dependency('x11')
1253 dep_xext = dependency('xext')
1254 dep_xdamage = dependency('xdamage', version : '>= 1.1')
1255 dep_xfixes = dependency('xfixes')
1256 dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1')
Dylan Baker1f11ac42017-10-24 11:34:04 -07001257 dep_xxf86vm = dependency('xxf86vm', required : false)
Dylan Bakera47c5252017-09-22 12:55:00 -07001258 endif
Dylan Bakerc34b53f2017-12-05 09:40:03 -08001259 if (with_any_vk or with_glx == 'dri' or
Dylan Baker34e852d2018-03-06 10:11:38 -08001260 (with_gallium_vdpau or with_gallium_xvmc or with_gallium_va or
1261 with_gallium_omx != 'disabled'))
Dylan Baker50c28df2017-09-29 17:53:01 -07001262 dep_xcb = dependency('xcb')
1263 dep_x11_xcb = dependency('x11-xcb')
Jon Turney6f0ce262017-11-23 13:51:43 +00001264 endif
Dylan Bakerf74cf042018-02-28 10:13:38 -08001265 if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm')
Dylan Baker50c28df2017-09-29 17:53:01 -07001266 dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8')
1267
Dylan Bakera47c5252017-09-22 12:55:00 -07001268 if with_dri3
Rob Clarkbc500132018-03-13 19:00:45 -04001269 pre_args += '-DHAVE_DRI3'
1270 dep_xcb_dri3 = dependency('xcb-dri3')
1271 dep_xcb_present = dependency('xcb-present')
1272 # until xcb-dri3 has been around long enough to make a hard-dependency:
1273 if (dep_xcb_dri3.version().version_compare('>= 1.13') and
1274 dep_xcb_present.version().version_compare('>= 1.13'))
1275 pre_args += '-DHAVE_DRI3_MODIFIERS'
1276 endif
Dylan Baker50c28df2017-09-29 17:53:01 -07001277 dep_xcb_sync = dependency('xcb-sync')
1278 dep_xshmfence = dependency('xshmfence', version : '>= 1.1')
Dylan Bakera47c5252017-09-22 12:55:00 -07001279 endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001280 endif
Dylan Baker118a7f02017-11-01 17:42:41 -07001281 if with_glx == 'dri'
Jon Turney3ae998a2017-11-23 14:01:57 +00001282 if with_dri_platform == 'drm'
1283 dep_dri2proto = dependency('dri2proto', version : '>= 2.8')
1284 endif
Dylan Baker50c28df2017-09-29 17:53:01 -07001285 dep_glproto = dependency('glproto', version : '>= 1.4.14')
1286 endif
Dylan Baker1e9d7792018-02-28 13:07:57 -08001287 if (with_egl or (
1288 with_gallium_vdpau or with_gallium_xvmc or with_gallium_xa or
1289 with_gallium_omx != 'disabled'))
Dylan Baker108d2572017-10-18 12:20:43 -07001290 dep_xcb_xfixes = dependency('xcb-xfixes')
1291 endif
Dylan Bakerd1992252017-09-14 17:57:17 -07001292endif
1293
Dylan Baker73092072017-11-28 16:31:06 -08001294if get_option('gallium-extra-hud')
1295 pre_args += '-DHAVE_GALLIUM_EXTRA_HUD=1'
1296endif
1297
Dylan Baker5e71efe2017-11-28 16:42:37 -08001298_sensors = get_option('lmsensors')
1299if _sensors != 'false'
1300 dep_lmsensors = cc.find_library('libsensors', required : _sensors == 'true')
1301 if dep_lmsensors.found()
1302 pre_args += '-DHAVE_LIBSENSORS=1'
1303 endif
1304else
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001305 dep_lmsensors = null_dep
Dylan Baker5e71efe2017-11-28 16:42:37 -08001306endif
1307
Dylan Bakerd1992252017-09-14 17:57:17 -07001308# TODO: gallium tests
1309
1310# TODO: various libdirs
1311
Dylan Bakerd1992252017-09-14 17:57:17 -07001312# TODO: gallium driver dirs
1313
1314# FIXME: this is a workaround for #2326
1315prog_touch = find_program('touch')
1316dummy_cpp = custom_target(
1317 'dummy_cpp',
1318 output : 'dummy.cpp',
1319 command : [prog_touch, '@OUTPUT@'],
1320)
1321
1322foreach a : pre_args
1323 add_project_arguments(a, language : ['c', 'cpp'])
1324endforeach
1325foreach a : c_args
1326 add_project_arguments(a, language : ['c'])
1327endforeach
1328foreach a : cpp_args
1329 add_project_arguments(a, language : ['cpp'])
1330endforeach
1331
1332inc_include = include_directories('include')
1333
Dylan Baker108d2572017-10-18 12:20:43 -07001334gl_priv_reqs = [
1335 'x11', 'xext', 'xdamage >= 1.1', 'xfixes', 'x11-xcb', 'xcb',
Jon Turney4a0bab12018-01-25 18:53:08 +00001336 'xcb-glx >= 1.8.1']
1337if dep_libdrm.found()
1338 gl_priv_reqs += 'libdrm >= 2.4.75'
1339endif
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001340if dep_xxf86vm.found()
Dylan Bakerb92992e2017-10-24 11:28:42 -07001341 gl_priv_reqs += 'xxf86vm'
Dylan Baker108d2572017-10-18 12:20:43 -07001342endif
1343if with_dri_platform == 'drm'
1344 gl_priv_reqs += 'xcb-dri2 >= 1.8'
1345endif
1346
1347gl_priv_libs = []
1348if dep_thread.found()
1349 gl_priv_libs += ['-lpthread', '-pthread']
1350endif
1351if dep_m.found()
1352 gl_priv_libs += '-lm'
1353endif
Dylan Bakerb5f92b62018-03-15 13:30:22 -07001354if dep_dl.found()
Dylan Baker108d2572017-10-18 12:20:43 -07001355 gl_priv_libs += '-ldl'
1356endif
1357
Dylan Baker32180562017-09-20 20:11:32 -07001358pkg = import('pkgconfig')
1359
Eric Engestrom11d45302018-02-23 17:02:08 +00001360env_test = environment()
1361env_test.set('NM', find_program('nm').path())
1362
Dylan Bakerd1992252017-09-14 17:57:17 -07001363subdir('include')
Eric Engestrom05a94a42017-10-24 18:03:39 +01001364subdir('bin')
Dylan Bakerd1992252017-09-14 17:57:17 -07001365subdir('src')