blob: b40b71c5e842d42ee784a254e0038818d1952f74 [file] [log] [blame]
Dylan Bakerd1992252017-09-14 17:57:17 -07001# Copyright © 2017 Intel Corporation
2
3# Permission is hereby granted, free of charge, to any person obtaining a copy
4# of this software and associated documentation files (the "Software"), to deal
5# in the Software without restriction, including without limitation the rights
6# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7# copies of the Software, and to permit persons to whom the Software is
8# furnished to do so, subject to the following conditions:
9
10# The above copyright notice and this permission notice shall be included in
11# all copies or substantial portions of the Software.
12
13# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19# SOFTWARE.
20
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 Baker32180562017-09-20 20:11:32 -070032# Arguments for the preprocessor, put these in a separate array from the C and
33# C++ (cpp in meson terminology) arguments since they need to be added to the
34# default arguments for both C and C++.
35pre_args = [
36 '-D__STDC_CONSTANT_MACROS',
37 '-D__STDC_FORMAT_MACROS',
38 '-D__STDC_LIMIT_MACROS',
39 '-DVERSION="@0@"'.format(meson.project_version()),
40 '-DPACKAGE_VERSION=VERSION',
41 '-DPACKAGE_BUGREPORT="https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa"',
42]
43
Dylan Bakere915b8d2017-09-28 14:02:51 -070044with_vulkan_icd_dir = get_option('vulkan-icd-dir')
Dylan Bakerd1992252017-09-14 17:57:17 -070045with_tests = get_option('build-tests')
46with_valgrind = get_option('valgrind')
Erik Faye-Lund9e5a5a12017-10-23 20:54:03 +020047with_libunwind = get_option('libunwind')
Dylan Baker32180562017-09-20 20:11:32 -070048with_asm = get_option('asm')
Dylan Bakercbbd5bb2017-10-20 21:48:18 -070049with_osmesa = get_option('osmesa')
Dylan Baker3b209e92017-10-10 15:25:07 -070050if get_option('texture-float')
51 pre_args += '-DTEXTURE_FLOAT_ENABLED'
52 message('WARNING: Floating-point texture enabled. Please consult docs/patents.txt and your lawyer before building mesa.')
53endif
Dylan Baker32180562017-09-20 20:11:32 -070054
Dylan Bakerdb978842017-09-28 13:59:04 -070055dri_drivers_path = get_option('dri-drivers-path')
56if dri_drivers_path == ''
57 dri_drivers_path = join_paths(get_option('libdir'), 'dri')
58endif
59
Dylan Baker32180562017-09-20 20:11:32 -070060with_gles1 = get_option('gles1')
61with_gles2 = get_option('gles2')
62with_opengl = get_option('opengl')
63with_any_opengl = with_opengl or with_gles1 or with_gles2
Dylan Bakera47c5252017-09-22 12:55:00 -070064# Only build shared_glapi if at least one OpenGL API is enabled
65with_shared_glapi = get_option('shared-glapi') and with_any_opengl
Dylan Baker32180562017-09-20 20:11:32 -070066
Dylan Baker32180562017-09-20 20:11:32 -070067
68# shared-glapi is required if at least two OpenGL APIs are being built
69if not with_shared_glapi
70 if ((with_gles1 and with_gles2) or (with_gles1 and with_opengl)
71 or (with_gles2 and with_opengl))
72 error('shared-glapi required for building two or more of OpenGL, OpenGL ES 1.x, OpenGL ES 2.x')
73 endif
74endif
75
76# We require OpenGL for OpenGL ES
77if (with_gles1 or with_gles2) and not with_opengl
78 error('building OpenGL ES without OpenGL is not supported.')
79endif
80
81with_dri = false
Ville Syrjälä22899642017-10-10 01:15:42 +030082with_dri_i915 = false
Dylan Baker32180562017-09-20 20:11:32 -070083with_dri_i965 = false
Dylan Baker191e7852017-10-16 17:12:52 -070084with_dri_r100 = false
Dylan Bakereecd2862017-10-16 17:24:56 -070085with_dri_r200 = false
Dylan Bakereb3bb032017-10-16 17:51:47 -070086with_dri_nouveau = false
Dylan Bakerc2cd5802017-10-03 17:06:22 -070087with_dri_swrast = false
Dylan Baker32180562017-09-20 20:11:32 -070088_drivers = get_option('dri-drivers')
Dylan Baker18733272017-10-30 10:17:22 -070089if _drivers == 'auto'
90 # TODO: PPC, Sparc
91 if not ['darwin', 'windows'].contains(host_machine.system())
92 if ['x86', 'x86_64'].contains(host_machine.cpu_family())
93 _drivers = 'i915,i965,r100,r200,nouveau'
94 else
95 error('Unknown architecture. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.')
96 endif
97 else
98 error('Unknown OS. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.')
99 endif
100endif
Dylan Baker32180562017-09-20 20:11:32 -0700101if _drivers != ''
102 _split = _drivers.split(',')
Ville Syrjälä22899642017-10-10 01:15:42 +0300103 with_dri_i915 = _split.contains('i915')
Dylan Baker32180562017-09-20 20:11:32 -0700104 with_dri_i965 = _split.contains('i965')
Dylan Baker191e7852017-10-16 17:12:52 -0700105 with_dri_r100 = _split.contains('r100')
Dylan Bakereecd2862017-10-16 17:24:56 -0700106 with_dri_r200 = _split.contains('r200')
Dylan Bakereb3bb032017-10-16 17:51:47 -0700107 with_dri_nouveau = _split.contains('nouveau')
Dylan Bakerc2cd5802017-10-03 17:06:22 -0700108 with_dri_swrast = _split.contains('swrast')
Dylan Baker32180562017-09-20 20:11:32 -0700109 with_dri = true
110endif
111
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700112with_gallium = false
Eric Anholt1918c9b2017-10-12 18:39:08 -0700113with_gallium_pl111 = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700114with_gallium_radeonsi = false
Dylan Baker813b4b02017-10-09 14:59:35 -0700115with_gallium_nouveau = false
Rob Clark4aa69cc2017-10-14 10:08:50 -0400116with_gallium_freedreno = false
Dylan Bakerf3d03a22017-10-10 11:57:50 -0700117with_gallium_softpipe = false
Eric Anholt1ae80182017-10-12 13:53:12 -0700118with_gallium_vc4 = false
Eric Anholt4f3e3802017-10-12 18:40:16 -0700119with_gallium_vc5 = false
Dylan Baker51558a12017-10-20 15:45:22 -0700120with_gallium_etnaviv = false
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700121with_gallium_imx = false
Dylan Baker9169dde2017-10-25 16:54:53 -0700122with_gallium_i915 = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700123_drivers = get_option('gallium-drivers')
Dylan Baker18733272017-10-30 10:17:22 -0700124if _drivers == 'auto'
125 if not ['darwin', 'windows'].contains(host_machine.system())
126 # TODO: PPC, Sparc
127 if ['x86', 'x86_64'].contains(host_machine.cpu_family())
128 _drivers = 'radeonsi,nouveau,swrast'
129 elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
130 _drivers = 'pl111,vc4,vc5,freedreno,etnaviv,imx,swrast'
131 else
132 error('Unknown architecture. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.')
133 endif
134 else
135 error('Unknown OS. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.')
136 endif
137endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700138if _drivers != ''
139 _split = _drivers.split(',')
Dylan Bakerfbf39fd2017-10-17 14:44:15 -0700140 with_gallium_pl111 = _split.contains('pl111')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700141 with_gallium_radeonsi = _split.contains('radeonsi')
Dylan Baker813b4b02017-10-09 14:59:35 -0700142 with_gallium_nouveau = _split.contains('nouveau')
Rob Clark4aa69cc2017-10-14 10:08:50 -0400143 with_gallium_freedreno = _split.contains('freedreno')
Dylan Bakerde24d612017-10-10 14:27:19 -0700144 with_gallium_softpipe = _split.contains('swrast')
Eric Anholt1ae80182017-10-12 13:53:12 -0700145 with_gallium_vc4 = _split.contains('vc4')
Eric Anholt4f3e3802017-10-12 18:40:16 -0700146 with_gallium_vc5 = _split.contains('vc5')
Dylan Baker51558a12017-10-20 15:45:22 -0700147 with_gallium_etnaviv = _split.contains('etnaviv')
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700148 with_gallium_imx = _split.contains('imx')
Dylan Baker9169dde2017-10-25 16:54:53 -0700149 with_gallium_i915 = _split.contains('i915')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700150 with_gallium = true
Ville Syrjälä22899642017-10-10 01:15:42 +0300151endif
152
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800153with_intel_vk = false
154with_amd_vk = false
155with_any_vk = false
156_vulkan_drivers = get_option('vulkan-drivers')
157if _vulkan_drivers == 'auto'
158 if not ['darwin', 'windows'].contains(host_machine.system())
159 if host_machine.cpu_family().startswith('x86')
160 _vulkan_drivers = 'amd,intel'
161 else
162 error('Unknown architecture. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.')
163 endif
164 else
165 # No vulkan driver supports windows or macOS currently
166 _vulkan_drivers = ''
167 endif
168endif
169if _vulkan_drivers != ''
170 _split = _vulkan_drivers.split(',')
171 with_intel_vk = _split.contains('intel')
172 with_amd_vk = _split.contains('amd')
173 with_any_vk = with_amd_vk or with_intel_vk
174endif
175
Dylan Bakerde24d612017-10-10 14:27:19 -0700176if with_dri_swrast and with_gallium_softpipe
177 error('Only one swrast provider can be built')
178endif
Dylan Baker9169dde2017-10-25 16:54:53 -0700179if with_dri_i915 and with_gallium_i915
180 error('Only one i915 provider can be built')
181endif
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700182if with_gallium_imx and not with_gallium_etnaviv
183 error('IMX driver requires etnaviv driver')
184endif
Dylan Bakerde24d612017-10-10 14:27:19 -0700185
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700186dep_libdrm_intel = []
Dylan Baker9169dde2017-10-25 16:54:53 -0700187if with_dri_i915 or with_gallium_i915
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700188 dep_libdrm_intel = dependency('libdrm_intel', version : '>= 2.4.75')
189endif
190
Dylan Baker33627d22017-10-27 17:20:52 -0700191if host_machine.system() == 'darwin'
192 with_dri_platform = 'apple'
193elif ['windows', 'cygwin'].contains(host_machine.system())
194 with_dri_platform = 'windows'
195elif host_machine.system() == 'linux'
196 # FIXME: This should include BSD and possibly other systems
197 with_dri_platform = 'drm'
198else
199 # FIXME: haiku doesn't use dri, and xlib doesn't use dri, probably should
200 # assert here that one of those cases has been met.
201 # FIXME: GNU (hurd) ends up here as well, but meson doesn't officially
202 # support Hurd at time of writing (2017/11)
203 with_dri_platform = 'none'
204endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700205
Eric Engestromc5ec1552017-10-24 16:08:15 +0100206with_platform_android = false
Dylan Bakerd1992252017-09-14 17:57:17 -0700207with_platform_wayland = false
208with_platform_x11 = false
Dylan Bakerb1b65392017-09-28 22:25:02 -0700209with_platform_drm = false
Dylan Baker108d2572017-10-18 12:20:43 -0700210with_platform_surfaceless = false
211egl_native_platform = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700212_platforms = get_option('platforms')
Dylan Baker4b61b072017-11-15 17:31:32 -0800213if _platforms == 'auto'
214 if ['linux'].contains(host_machine.system())
215 _platforms = 'x11,wayland,drm,surfaceless'
216 else
217 error('Unknown OS, no platforms enabled. Patches gladly accepted to fix this.')
218 endif
219endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700220if _platforms != ''
221 _split = _platforms.split(',')
Eric Engestromc5ec1552017-10-24 16:08:15 +0100222 with_platform_android = _split.contains('android')
Dylan Bakerd1992252017-09-14 17:57:17 -0700223 with_platform_x11 = _split.contains('x11')
224 with_platform_wayland = _split.contains('wayland')
Dylan Bakerb1b65392017-09-28 22:25:02 -0700225 with_platform_drm = _split.contains('drm')
Dylan Baker108d2572017-10-18 12:20:43 -0700226 with_platform_surfaceless = _split.contains('surfaceless')
227 egl_native_platform = _split[0]
Dylan Bakerd1992252017-09-14 17:57:17 -0700228endif
229
Dylan Baker118a7f02017-11-01 17:42:41 -0700230with_glx = get_option('glx')
231if with_glx == 'auto'
232 if with_dri
233 with_glx = 'dri'
234 elif with_gallium
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700235 # Even when building just gallium drivers the user probably wants dri
236 with_glx = 'dri'
237 with_dri = true
Dylan Baker118a7f02017-11-01 17:42:41 -0700238 elif with_platform_x11 and with_any_opengl and not with_any_vk
239 # The automatic behavior should not be to turn on xlib based glx when
240 # building only vulkan drivers
241 with_glx = 'xlib'
242 else
243 with_glx = 'disabled'
244 endif
245endif
246
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700247if not (with_dri or with_gallium or with_glx == 'xlib' or with_glx == 'gallium-xlib')
Dylan Baker118a7f02017-11-01 17:42:41 -0700248 with_gles1 = false
249 with_gles2 = false
250 with_opengl = false
251 with_any_opengl = false
252 with_shared_glapi = false
253endif
254
Dylan Baker816bf7d12017-09-28 15:53:53 -0700255with_gbm = get_option('gbm')
256if with_gbm == 'auto' and with_dri # TODO: or gallium
257 with_gbm = host_machine.system() == 'linux'
Dylan Baker05893312017-10-30 10:27:48 -0700258elif with_gbm == 'true'
Dylan Baker816bf7d12017-09-28 15:53:53 -0700259 if not ['linux', 'bsd'].contains(host_machine.system())
260 error('GBM only supports unix-like platforms')
261 endif
262 with_gbm = true
263else
264 with_gbm = false
265endif
266
Dylan Baker108d2572017-10-18 12:20:43 -0700267_egl = get_option('egl')
268if _egl == 'auto'
269 with_egl = with_dri and with_shared_glapi and egl_native_platform != ''
Dylan Baker05893312017-10-30 10:27:48 -0700270elif _egl == 'true'
Dylan Baker108d2572017-10-18 12:20:43 -0700271 if not with_dri
272 error('EGL requires dri')
273 elif not with_shared_glapi
274 error('EGL requires shared-glapi')
275 elif egl_native_platform == ''
276 error('No platforms specified, consider -Dplatforms=drm,x11 at least')
277 endif
278 with_egl = true
279else
280 with_egl = false
281endif
282
283# TODO: or virgl
284if with_egl and with_gallium_radeonsi and not (with_platform_drm or with_platform_surfaceless)
285 error('RadeonSI requires drm or surfaceless platform when using EGL')
286endif
287
Dylan Baker8e611872017-10-11 12:49:31 -0700288pre_args += '-DGLX_USE_TLS'
Dylan Bakera47c5252017-09-22 12:55:00 -0700289if with_glx != 'disabled'
Dylan Baker8d3b1212017-10-18 15:47:11 -0700290 if not (with_platform_x11 and with_any_opengl)
291 if with_glx == 'auto'
292 with_glx = 'disabled'
293 else
294 error('Cannot build GLX support without X11 platform support and at least one OpenGL API')
295 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700296 elif with_glx == 'gallium-xlib'
297 if not with_gallium
298 error('Gallium-xlib based GLX requires at least one gallium driver')
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700299 elif not with_gallium_softpipe
300 error('Gallium-xlib based GLX requires softpipe or llvmpipe.')
Dylan Bakera47c5252017-09-22 12:55:00 -0700301 elif with_dri
302 error('gallium-xlib conflicts with any dri driver')
303 endif
Dylan Baker118a7f02017-11-01 17:42:41 -0700304 elif with_glx == 'xlib'
305 if with_dri
306 error('xlib conflicts with any dri driver')
307 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700308 elif with_glx == 'dri' and not with_dri
309 error('dri based GLX requires at least one DRI driver')
Dylan Bakera47c5252017-09-22 12:55:00 -0700310 endif
311endif
312
313with_glvnd = get_option('glvnd')
Dylan Baker8a36f022017-11-01 10:24:10 -0700314if with_glvnd
315 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
316 error('Cannot build glvnd support for GLX that is not DRI based.')
317 elif with_glx == 'disabled' and not with_egl
318 error('glvnd requires DRI based GLX and/or EGL')
319 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700320endif
321
322# TODO: toggle for this
323with_glx_direct = true
324
Dylan Bakerd1992252017-09-14 17:57:17 -0700325if with_vulkan_icd_dir == ''
326 with_vulkan_icd_dir = join_paths(get_option('datadir'), 'vulkan/icd.d')
327endif
328
Dylan Baker50c28df2017-09-29 17:53:01 -0700329with_dri2 = (with_dri or with_any_vk) and with_dri_platform == 'drm'
330with_dri3 = get_option('dri3')
331if with_dri3 == 'auto'
332 if host_machine.system() == 'linux' and with_dri2
333 with_dri3 = true
334 else
335 with_dri3 = false
336 endif
Dylan Baker05893312017-10-30 10:27:48 -0700337elif with_dri3 == 'true'
Dylan Baker50c28df2017-09-29 17:53:01 -0700338 with_dri3 = true
339else
340 with_dri3 = false
341endif
342
343if with_any_vk and (with_platform_x11 and not with_dri3)
344 error('Vulkan drivers require dri3 for X11 support')
345endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700346if with_dri or with_gallium
Dylan Baker108d2572017-10-18 12:20:43 -0700347 if with_glx == 'disabled' and not with_egl
Dylan Bakera47c5252017-09-22 12:55:00 -0700348 error('building dri or gallium drivers require at least one window system')
349 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700350endif
351
Dylan Baker50c28df2017-09-29 17:53:01 -0700352with_gallium_xvmc = false
353with_gallium_vdpau = false
354with_gallium_omx = false # this is bellagio
355with_gallium_va = false
356with_gallium_media = false
357dep_va = []
358_drivers = get_option('gallium-media')
359if _drivers != ''
360 _split = _drivers.split(',')
361 with_gallium_xvmc = _split.contains('xvmc')
362 with_gallium_vdpau = _split.contains('vdpau')
363 with_gallium_omx = _split.contains('omx')
364 with_gallium_va = _split.contains('va')
365 with_gallium_media = (with_gallium_xvmc or with_gallium_vdpau or
366 with_gallium_omx or with_gallium_va)
367endif
368
Dylan Baker108d2572017-10-18 12:20:43 -0700369gl_pkgconfig_c_flags = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700370if with_platform_x11
371 if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
372 pre_args += '-DHAVE_X11_PLATFORM'
373 endif
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700374 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
Dylan Baker118a7f02017-11-01 17:42:41 -0700375 pre_args += '-DUSE_XSHM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700376 else
377 pre_args += '-DGLX_INDIRECT_RENDERING'
378 if with_glx_direct
379 pre_args += '-DGLX_DIRECT_RENDERING'
380 endif
381 if with_dri_platform == 'drm'
382 pre_args += '-DGLX_USE_DRM'
383 endif
384 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700385else
386 pre_args += '-DMESA_EGL_NO_X11_HEADERS'
387 gl_pkgconfig_c_flags += '-DMESA_EGL_NO_X11_HEADERS'
388endif
389if with_platform_drm
390 if with_egl and not with_gbm
391 error('EGL drm platform requires gbm')
392 endif
393 pre_args += '-DHAVE_DRM_PLATFORM'
394endif
395if with_platform_surfaceless
396 pre_args += '-DHAVE_SURFACELESS_PLATFORM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700397endif
Eric Engestromc5ec1552017-10-24 16:08:15 +0100398if with_platform_android
399 dep_android = [
400 dependency('cutils'),
401 dependency('hardware'),
402 dependency('sync'),
403 ]
404 pre_args += '-DHAVE_ANDROID_PLATFORM'
405endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700406
Dylan Bakerd1992252017-09-14 17:57:17 -0700407prog_python2 = find_program('python2')
Dylan Baker9342a7d2017-09-28 10:48:30 -0700408has_mako = run_command(prog_python2, '-c', 'import mako')
409if has_mako.returncode() != 0
410 error('Python (2.x) mako module required to build mesa.')
411endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700412
413cc = meson.get_compiler('c')
414if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6')
Eric Engestrom1262e822017-09-29 15:25:18 +0100415 error('When using GCC, version 4.4.6 or later is required.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700416endif
417
Eric Engestrom1e6f9ea2017-11-06 17:18:06 +0000418# Define DEBUG for debug builds only (debugoptimized is not included on this one)
419if get_option('buildtype') == 'debug'
Dylan Bakerd1992252017-09-14 17:57:17 -0700420 pre_args += '-DDEBUG'
421endif
422
Dylan Baker673dda82017-09-20 11:53:29 -0700423if get_option('shader-cache')
424 pre_args += '-DENABLE_SHADER_CACHE'
425elif with_amd_vk
426 error('Radv requires shader cache support')
427endif
428
Dylan Bakerd1992252017-09-14 17:57:17 -0700429# Check for GCC style builtins
430foreach b : ['bswap32', 'bswap64', 'clz', 'clzll', 'ctz', 'expect', 'ffs',
431 'ffsll', 'popcount', 'popcountll', 'unreachable']
432 if cc.has_function(b)
433 pre_args += '-DHAVE___BUILTIN_@0@'.format(b.to_upper())
434 endif
435endforeach
436
Dylan Baker673dda82017-09-20 11:53:29 -0700437# check for GCC __attribute__
Dylan Bakerd1992252017-09-14 17:57:17 -0700438foreach a : ['const', 'flatten', 'malloc', 'pure', 'unused',
439 'warn_unused_result', 'weak',]
440 if cc.compiles('int foo(void) __attribute__((@0@));'.format(a),
441 name : '__attribute__((@0@))'.format(a))
442 pre_args += '-DHAVE_FUNC_ATTRIBUTE_@0@'.format(a.to_upper())
443 endif
444endforeach
445if cc.compiles('int foo(const char *p, ...) __attribute__((format(printf, 1, 2)));',
446 name : '__attribute__((format(...)))')
447 pre_args += '-DHAVE_FUNC_ATTRIBUTE_FORMAT'
448endif
449if cc.compiles('struct __attribute__((packed)) foo { int bar; };',
450 name : '__attribute__((packed))')
451 pre_args += '-DHAVE_FUNC_ATTRIBUTE_PACKED'
452endif
453if cc.compiles('int *foo(void) __attribute__((returns_nonnull));',
454 name : '__attribute__((returns_nonnull))')
455 pre_args += '-DHAVE_FUNC_ATTRIBUTE_NONNULL'
456endif
457if cc.compiles('''int foo_def(void) __attribute__((visibility("default")));
458 int foo_hid(void) __attribute__((visibility("hidden")));
459 int foo_int(void) __attribute__((visibility("internal")));
460 int foo_pro(void) __attribute__((visibility("protected")));''',
461 name : '__attribute__((visibility(...)))')
462 pre_args += '-DHAVE_FUNC_ATTRIBUTE_VISBILITY'
463endif
464if cc.compiles('int foo(void) { return 0; } int bar(void) __attribute__((alias("foo")));',
465 name : '__attribute__((alias(...)))')
466 pre_args += '-DHAVE_FUNC_ATTRIBUTE_ALIAS'
467endif
468
469# TODO: this is very incomplete
470if host_machine.system() == 'linux'
471 pre_args += '-D_GNU_SOURCE'
472endif
473
474# Check for generic C arguments
475c_args = []
476foreach a : ['-Wall', '-Werror=implicit-function-declaration',
477 '-Werror=missing-prototypes', '-fno-math-errno',
478 '-fno-trapping-math', '-Qunused-arguments']
479 if cc.has_argument(a)
480 c_args += a
481 endif
482endforeach
483c_vis_args = []
484if cc.has_argument('-fvisibility=hidden')
485 c_vis_args += '-fvisibility=hidden'
486endif
487
488# Check for generic C++ arguments
489cpp = meson.get_compiler('cpp')
490cpp_args = []
491foreach a : ['-Wall', '-fno-math-errno', '-fno-trapping-math',
492 '-Qunused-arguments', '-Wno-non-virtual-dtor']
493 if cpp.has_argument(a)
494 cpp_args += a
495 endif
496endforeach
497cpp_vis_args = []
498if cpp.has_argument('-fvisibility=hidden')
499 cpp_vis_args += '-fvisibility=hidden'
500endif
501
502# Check for C and C++ arguments for MSVC2013 compatibility. These are only used
503# in parts of the mesa code base that need to compile with old versions of
504# MSVC, mainly common code
505c_msvc_compat_args = []
506cpp_msvc_compat_args = []
507foreach a : ['-Werror=pointer-arith', '-Werror=vla']
508 if cc.has_argument(a)
509 c_msvc_compat_args += a
510 endif
511 if cpp.has_argument(a)
512 cpp_msvc_compat_args += a
513 endif
514endforeach
515
516no_override_init_args = []
517foreach a : ['-Wno-override-init', '-Wno-initializer-overrides']
518 if cc.has_argument(a)
519 no_override_init_args += a
520 endif
521endforeach
522
Dylan Baker84486f62017-11-15 16:09:22 -0800523if host_machine.cpu_family().startswith('x86')
524 pre_args += '-DHAVE_SSE41'
525 with_sse41 = true
526 sse41_args = ['-msse4.1']
527
528 # GCC on x86 (not x86_64) with -msse* assumes a 16 byte aligned stack, but
529 # that's not guaranteed
530 if host_machine.cpu_family() == 'x86'
531 sse41_args += '-mstackrealign'
532 endif
533else
534 with_sse41 = false
535 sse41_args = []
536endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700537
538# Check for GCC style atomics
539if cc.compiles('int main() { int n; return __atomic_load_n(&n, __ATOMIC_ACQUIRE); }',
540 name : 'GCC atomic builtins')
541 pre_args += '-DUSE_GCC_ATOMIC_BUILTINS'
542endif
543if not cc.links('''#include <stdint.h>
544 uint64_t v;
545 int main() {
546 return __sync_add_and_fetch(&v, (uint64_t)1);
547 }''',
548 name : 'GCC 64bit atomics')
549 pre_args += '-DMISSING_64_BIT_ATOMICS'
550endif
551
552# TODO: endian
553# TODO: powr8
554# TODO: shared/static? Is this even worth doing?
555
Dylan Baker2d62fc02017-11-15 16:53:40 -0800556# Building x86 assembly code requires running x86 binaries. It is possible for
557# x86_64 OSes to run x86 binaries, so don't disable asm in those cases
558# TODO: it should be possible to use an exe_wrapper to run the binary during
559# the build.
560if meson.is_cross_build()
561 if not (build_machine.cpu_family() == 'x86_64' and host_machine.cpu_family() == 'x86'
562 and build_machine.system() == host_machine.system())
563 message('Cross compiling to x86 from non-x86, disabling asm')
564 with_asm = false
565 endif
Dylan Baker32180562017-09-20 20:11:32 -0700566endif
567
568with_asm_arch = ''
569if with_asm
570 # TODO: SPARC and PPC
571 if host_machine.cpu_family() == 'x86'
572 if ['linux', 'bsd'].contains(host_machine.system()) # FIXME: hurd?
573 with_asm_arch = 'x86'
574 pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM',
575 '-DUSE_SSE_ASM']
576 endif
577 elif host_machine.cpu_family() == 'x86_64'
578 if host_machine.system() == 'linux'
579 with_asm_arch = 'x86_64'
580 pre_args += ['-DUSE_X86_64_ASM']
581 endif
582 elif host_machine.cpu_family() == 'arm'
583 if host_machine.system() == 'linux'
584 with_asm_arch = 'arm'
585 pre_args += ['-DUSE_ARM_ASM']
586 endif
587 elif host_machine.cpu_family() == 'aarch64'
588 if host_machine.system() == 'linux'
589 with_asm_arch = 'aarch64'
590 pre_args += ['-DUSE_AARCH64_ASM']
591 endif
592 endif
593endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700594
595# Check for standard headers and functions
596if cc.has_header_symbol('sys/sysmacros.h', 'major')
597 pre_args += '-DMAJOR_IN_SYSMACROS'
598elif cc.has_header_symbol('sys/mkdev.h', 'major')
599 pre_args += '-DMAJOR_IN_MKDEV'
600endif
601
Timothy Arcerif98a2762017-10-16 18:06:49 +1100602foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h']
Dylan Bakerd1992252017-09-14 17:57:17 -0700603 if cc.has_header(h)
604 pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify())
605 endif
606endforeach
607
Nicolai Hähnle2e3d0dd2017-11-15 12:41:58 +0100608foreach f : ['strtof', 'mkostemp', 'posix_memalign', 'timespec_get']
Dylan Bakerd1992252017-09-14 17:57:17 -0700609 if cc.has_function(f)
610 pre_args += '-DHAVE_@0@'.format(f.to_upper())
611 endif
612endforeach
613
614# strtod locale support
615if cc.links('''
616 #define _GNU_SOURCE
617 #include <stdlib.h>
618 #include <locale.h>
619 #ifdef HAVE_XLOCALE_H
620 #include <xlocale.h>
621 #endif
622 int main() {
623 locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
624 const char *s = "1.0";
625 char *end;
626 double d = strtod_l(s, end, loc);
Eric Engestromab0809e2017-11-21 14:24:01 +0000627 float f = strtof_l(s, end, loc);
Dylan Bakerd1992252017-09-14 17:57:17 -0700628 freelocale(loc);
629 return 0;
630 }''',
631 extra_args : pre_args,
632 name : 'strtod has locale support')
633 pre_args += '-DHAVE_STRTOD_L'
634endif
635
636# Check for some linker flags
637ld_args_bsymbolic = []
Dylan Bakere21e0a62017-09-30 13:15:52 -0700638if cc.links('int main() { return 0; }', args : '-Wl,-Bsymbolic', name : 'Bsymbolic')
Dylan Bakerd1992252017-09-14 17:57:17 -0700639 ld_args_bsymbolic += '-Wl,-Bsymbolic'
640endif
641ld_args_gc_sections = []
642if cc.links('static char unused() { return 5; } int main() { return 0; }',
Dylan Bakere21e0a62017-09-30 13:15:52 -0700643 args : '-Wl,--gc-sections', name : 'gc-sections')
Dylan Bakerd1992252017-09-14 17:57:17 -0700644 ld_args_gc_sections += '-Wl,--gc-sections'
645endif
Dylan Bakere21e0a62017-09-30 13:15:52 -0700646with_ld_version_script = false
647if cc.links('int main() { return 0; }',
648 args : '-Wl,--version-script=@0@'.format(
649 join_paths(meson.source_root(), 'build-support/conftest.map')),
650 name : 'version-script')
651 with_ld_version_script = true
652endif
653with_ld_dynamic_list = false
654if cc.links('int main() { return 0; }',
655 args : '-Wl,--dynamic-list=@0@'.format(
656 join_paths(meson.source_root(), 'build-support/conftest.dyn')),
657 name : 'dynamic-list')
658 with_ld_dynamic_list = true
659endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700660
661# check for dl support
662if cc.has_function('dlopen')
663 dep_dl = []
664else
665 dep_dl = cc.find_library('dl')
666endif
Dylan Baker32180562017-09-20 20:11:32 -0700667if cc.has_function('dladdr', dependencies : dep_dl)
668 # This is really only required for megadrivers
669 pre_args += '-DHAVE_DLADDR'
Dylan Bakerd1992252017-09-14 17:57:17 -0700670endif
671
672if cc.has_function('dl_iterate_phdr')
673 pre_args += '-DHAVE_DL_ITERATE_PHDR'
Dylan Bakere89842e2017-11-15 17:07:37 -0800674elif with_intel_vk
675 error('Intel "Anvil" Vulkan driver requires the dl_iterate_phdr function')
676elif with_dri_i965 and get_option('shader-cache')
677 error('Intel i965 GL driver requires dl_iterate_phdr when built with shader caching.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700678endif
679
680# Determine whether or not the rt library is needed for time functions
681if cc.has_function('clock_gettime')
682 dep_clock = []
683else
684 dep_clock = cc.find_library('rt')
685endif
686
Dylan Baker66c94b92017-09-30 13:48:34 -0700687with_gallium_drisw_kms = false
Dylan Baker50c28df2017-09-29 17:53:01 -0700688dep_libdrm = dependency('libdrm', version : '>= 2.4.75',
689 required : with_dri2 or with_dri3)
690if dep_libdrm.found()
691 pre_args += '-DHAVE_LIBDRM'
Dylan Baker66c94b92017-09-30 13:48:34 -0700692 if with_dri_platform == 'drm' and with_dri
693 with_gallium_drisw_kms = true
694 endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700695endif
696
Dylan Bakerd1992252017-09-14 17:57:17 -0700697# TODO: some of these may be conditional
698dep_zlib = dependency('zlib', version : '>= 1.2.3')
699dep_thread = dependency('threads')
Jon Turney8ceccbf2017-11-13 10:13:39 +0000700if dep_thread.found() and host_machine.system() != 'windows'
Dylan Baker50c28df2017-09-29 17:53:01 -0700701 pre_args += '-DHAVE_PTHREAD'
702endif
Dylan Bakercc4f5872017-09-27 11:30:21 -0700703dep_elf = dependency('libelf', required : false)
Dylan Bakerb154b442017-09-30 14:04:28 -0700704if not dep_elf.found() and (with_amd_vk or with_gallium_radeonsi) # TODO: clover, r600
705 dep_elf = cc.find_library('elf')
Dylan Bakercc4f5872017-09-27 11:30:21 -0700706endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700707dep_expat = dependency('expat')
708# this only exists on linux so either this is linux and it will be found, or
709# its not linux and and wont
710dep_m = cc.find_library('m', required : false)
Dylan Baker66f97f62017-09-30 09:03:51 -0700711
712dep_libdrm_amdgpu = []
713dep_libdrm_radeon = []
Dylan Baker813b4b02017-10-09 14:59:35 -0700714dep_libdrm_nouveau = []
Dylan Baker51558a12017-10-20 15:45:22 -0700715dep_libdrm_etnaviv = []
Rob Clark4aa69cc2017-10-14 10:08:50 -0400716dep_libdrm_freedreno = []
Dylan Baker66f97f62017-09-30 09:03:51 -0700717if with_amd_vk or with_gallium_radeonsi
Andrey Grodzovsky19fc3cd2017-11-02 10:50:39 -0400718 dep_libdrm_amdgpu = dependency('libdrm_amdgpu', version : '>= 2.4.88')
Dylan Baker66f97f62017-09-30 09:03:51 -0700719endif
Dylan Bakereecd2862017-10-16 17:24:56 -0700720if with_gallium_radeonsi or with_dri_r100 or with_dri_r200
Dylan Baker66f97f62017-09-30 09:03:51 -0700721 dep_libdrm_radeon = dependency('libdrm_radeon', version : '>= 2.4.71')
722endif
Dylan Bakereb3bb032017-10-16 17:51:47 -0700723if with_gallium_nouveau or with_dri_nouveau
Dylan Baker813b4b02017-10-09 14:59:35 -0700724 dep_libdrm_nouveau = dependency('libdrm_nouveau', version : '>= 2.4.66')
725endif
Dylan Baker51558a12017-10-20 15:45:22 -0700726if with_gallium_etnaviv
727 dep_libdrm_etnaviv = dependency('libdrm_etnaviv', version : '>= 2.4.82')
728endif
Rob Clark4aa69cc2017-10-14 10:08:50 -0400729if with_gallium_freedreno
730 dep_libdrm_freedreno = dependency('libdrm_freedreno', version : '>= 2.4.74')
731endif
Dylan Baker673dda82017-09-20 11:53:29 -0700732
733llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit']
Dylan Baker2d1a3bf2017-11-20 16:26:06 -0800734if with_amd_vk or with_gallium_radeonsi
Dylan Baker673dda82017-09-20 11:53:29 -0700735 llvm_modules += ['amdgpu', 'bitreader', 'ipo']
736endif
Dylan Baker48f64e52017-11-17 16:37:50 -0800737
738_llvm = get_option('llvm')
739if _llvm == 'auto'
Eric Anholtd975e692017-11-08 11:52:09 -0800740 dep_llvm = dependency(
Dylan Baker48f64e52017-11-17 16:37:50 -0800741 'llvm', version : '>= 3.9.0', modules : llvm_modules,
Dylan Baker2d1a3bf2017-11-20 16:26:06 -0800742 required : with_amd_vk or with_gallium_radeonsi,
Eric Anholtd975e692017-11-08 11:52:09 -0800743 )
Dylan Baker48f64e52017-11-17 16:37:50 -0800744 with_llvm = dep_llvm.found()
745elif _llvm == 'true'
746 dep_llvm = dependency('llvm', version : '>= 3.9.0', modules : llvm_modules)
747 with_llvm = true
748else
749 dep_llvm = []
750 with_llvm = false
751endif
752if with_llvm
753 _llvm_version = dep_llvm.version().split('.')
754 # Development versions of LLVM have an 'svn' suffix, we don't want that for
755 # our version checks.
756 _llvm_patch = _llvm_version[2]
757 if _llvm_patch.endswith('svn')
758 _llvm_patch = _llvm_patch.split('s')[0]
Dylan Baker673dda82017-09-20 11:53:29 -0700759 endif
Dylan Baker48f64e52017-11-17 16:37:50 -0800760 pre_args += [
761 '-DHAVE_LLVM=0x0@0@@1@@2@'.format(_llvm_version[0], _llvm_version[1], _llvm_patch),
762 '-DMESA_LLVM_VERSION_PATCH=@0@'.format(_llvm_patch),
763 ]
Dylan Baker66f97f62017-09-30 09:03:51 -0700764elif with_amd_vk or with_gallium_radeonsi
765 error('The following drivers requires LLVM: Radv, RadeonSI. One of these is enabled, but LLVM is disabled.')
Dylan Baker673dda82017-09-20 11:53:29 -0700766endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700767
Dylan Bakera47c5252017-09-22 12:55:00 -0700768dep_glvnd = []
769if with_glvnd
770 dep_glvnd = dependency('libglvnd', version : '>= 0.2.0')
771 pre_args += '-DUSE_LIBGLVND=1'
772endif
773
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +0200774if with_valgrind != 'false'
775 dep_valgrind = dependency('valgrind', required : with_valgrind == 'true')
776 if dep_valgrind.found()
777 pre_args += '-DHAVE_VALGRIND'
778 endif
779else
780 dep_valgrind = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700781endif
782
783# pthread stubs. Lets not and say we didn't
784
Dylan Baker32180562017-09-20 20:11:32 -0700785prog_bison = find_program('bison', required : with_any_opengl)
786prog_flex = find_program('flex', required : with_any_opengl)
787
Dylan Baker32180562017-09-20 20:11:32 -0700788dep_selinux = []
Eric Engestrom4b9421d2017-10-26 16:19:41 +0100789if get_option('selinux')
790 dep_selinux = dependency('libselinux')
791 pre_args += '-DMESA_SELINUX'
792endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700793
794# TODO: llvm-prefix and llvm-shared-libs
795
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +0200796if with_libunwind != 'false'
797 dep_unwind = dependency('libunwind', required : with_libunwind == 'true')
798 if dep_unwind.found()
799 pre_args += '-DHAVE_LIBUNWIND'
800 endif
801else
802 dep_unwind = []
Dylan Bakerb1b65392017-09-28 22:25:02 -0700803endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700804
Dylan Bakerd1992252017-09-14 17:57:17 -0700805# TODO: gallium-hud
806
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700807if with_osmesa != 'none'
808 if with_osmesa == 'classic' and not with_dri_swrast
809 error('OSMesa classic requires dri (classic) swrast.')
810 endif
Dylan Bakerf121a662017-10-24 15:52:57 -0700811 if with_osmesa == 'gallium' and not with_gallium_softpipe
812 error('OSMesa gallium requires gallium softpipe or llvmpipe.')
813 endif
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700814 osmesa_lib_name = 'OSMesa'
815 osmesa_bits = get_option('osmesa-bits')
816 if osmesa_bits != '8'
817 if with_dri or with_glx != 'disabled'
818 error('OSMesa bits must be 8 if building glx or dir based drivers')
819 endif
820 osmesa_lib_name = osmesa_lib_name + osmesa_bits
821 pre_args += [
822 '-DCHAN_BITS=@0@'.format(osmesa_bits), '-DDEFAULT_SOFTWARE_DEPTH_BITS=31'
823 ]
824 endif
825endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700826
Dylan Bakerd1992252017-09-14 17:57:17 -0700827# TODO: symbol mangling
828
Dylan Bakerd1992252017-09-14 17:57:17 -0700829if with_platform_wayland
830 prog_wl_scanner = find_program('wayland-scanner')
831 dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.8')
832 dep_wayland_client = dependency('wayland-client', version : '>=1.11')
833 dep_wayland_server = dependency('wayland-server', version : '>=1.11')
Dylan Baker108d2572017-10-18 12:20:43 -0700834 wayland_dmabuf_xml = join_paths(
835 dep_wl_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable',
836 'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'
837 )
838 pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED']
Dylan Bakerd1992252017-09-14 17:57:17 -0700839else
840 prog_wl_scanner = []
841 dep_wl_protocols = []
842 dep_wayland_client = []
843 dep_wayland_server = []
Dylan Baker108d2572017-10-18 12:20:43 -0700844 wayland_dmabuf_xml = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700845endif
846
Dylan Baker50c28df2017-09-29 17:53:01 -0700847dep_x11 = []
848dep_xext = []
849dep_xdamage = []
850dep_xfixes = []
851dep_x11_xcb = []
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700852dep_xcb = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700853dep_xcb_glx = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700854dep_xcb_dri2 = []
855dep_xcb_dri3 = []
Dylan Bakera47c5252017-09-22 12:55:00 -0700856dep_dri2proto = []
857dep_glproto = []
Dylan Baker1f11ac42017-10-24 11:34:04 -0700858dep_xxf86vm = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700859dep_xcb_dri3 = []
860dep_xcb_present = []
861dep_xcb_sync = []
Dylan Baker108d2572017-10-18 12:20:43 -0700862dep_xcb_xfixes = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700863dep_xshmfence = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700864if with_platform_x11
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700865 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
Dylan Baker118a7f02017-11-01 17:42:41 -0700866 dep_x11 = dependency('x11')
867 dep_xext = dependency('xext')
868 dep_xcb = dependency('xcb')
869 elif with_glx == 'dri' and with_dri_platform == 'drm'
Dylan Baker50c28df2017-09-29 17:53:01 -0700870 dep_x11 = dependency('x11')
871 dep_xext = dependency('xext')
872 dep_xdamage = dependency('xdamage', version : '>= 1.1')
873 dep_xfixes = dependency('xfixes')
874 dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1')
Dylan Baker1f11ac42017-10-24 11:34:04 -0700875 dep_xxf86vm = dependency('xxf86vm', required : false)
Dylan Bakera47c5252017-09-22 12:55:00 -0700876 endif
877 if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
Dylan Baker50c28df2017-09-29 17:53:01 -0700878 dep_xcb = dependency('xcb')
879 dep_x11_xcb = dependency('x11-xcb')
880 dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8')
881
Dylan Bakera47c5252017-09-22 12:55:00 -0700882 if with_dri3
883 pre_args += '-DHAVE_DRI3'
Dylan Baker50c28df2017-09-29 17:53:01 -0700884 dep_xcb_dri3 = dependency('xcb-dri3')
885 dep_xcb_present = dependency('xcb-present')
886 dep_xcb_sync = dependency('xcb-sync')
887 dep_xshmfence = dependency('xshmfence', version : '>= 1.1')
Dylan Bakera47c5252017-09-22 12:55:00 -0700888 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700889 endif
Dylan Baker118a7f02017-11-01 17:42:41 -0700890 if with_glx == 'dri'
Dylan Baker50c28df2017-09-29 17:53:01 -0700891 dep_dri2proto = dependency('dri2proto', version : '>= 2.8')
892 dep_glproto = dependency('glproto', version : '>= 1.4.14')
893 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700894 if with_egl
895 dep_xcb_xfixes = dependency('xcb-xfixes')
896 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700897endif
898
Dylan Bakerd1992252017-09-14 17:57:17 -0700899# TODO: nine
900
901# TODO: clover
902
Dylan Bakerd1992252017-09-14 17:57:17 -0700903# TODO: gallium tests
904
905# TODO: various libdirs
906
907# TODO: swr
908
909# TODO: gallium driver dirs
910
911# FIXME: this is a workaround for #2326
912prog_touch = find_program('touch')
913dummy_cpp = custom_target(
914 'dummy_cpp',
915 output : 'dummy.cpp',
916 command : [prog_touch, '@OUTPUT@'],
917)
918
919foreach a : pre_args
920 add_project_arguments(a, language : ['c', 'cpp'])
921endforeach
922foreach a : c_args
923 add_project_arguments(a, language : ['c'])
924endforeach
925foreach a : cpp_args
926 add_project_arguments(a, language : ['cpp'])
927endforeach
928
929inc_include = include_directories('include')
930
Dylan Baker108d2572017-10-18 12:20:43 -0700931gl_priv_reqs = [
932 'x11', 'xext', 'xdamage >= 1.1', 'xfixes', 'x11-xcb', 'xcb',
933 'xcb-glx >= 1.8.1', 'libdrm >= 2.4.75',
934]
Dylan Baker1f11ac42017-10-24 11:34:04 -0700935if dep_xxf86vm != [] and dep_xxf86vm.found()
Dylan Bakerb92992e2017-10-24 11:28:42 -0700936 gl_priv_reqs += 'xxf86vm'
Dylan Baker108d2572017-10-18 12:20:43 -0700937endif
938if with_dri_platform == 'drm'
939 gl_priv_reqs += 'xcb-dri2 >= 1.8'
940endif
941
942gl_priv_libs = []
943if dep_thread.found()
944 gl_priv_libs += ['-lpthread', '-pthread']
945endif
946if dep_m.found()
947 gl_priv_libs += '-lm'
948endif
Jon Turney7df9a362017-11-13 10:13:54 +0000949if dep_dl != [] and dep_dl.found()
Dylan Baker108d2572017-10-18 12:20:43 -0700950 gl_priv_libs += '-ldl'
951endif
952
Dylan Baker32180562017-09-20 20:11:32 -0700953pkg = import('pkgconfig')
954
Dylan Bakerd1992252017-09-14 17:57:17 -0700955subdir('include')
Eric Engestrom05a94a42017-10-24 18:03:39 +0100956subdir('bin')
Dylan Bakerd1992252017-09-14 17:57:17 -0700957subdir('src')