blob: 4cf7e224e950ed07b65d631c117e8d79bae569a7 [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 Baker4ae08292017-10-25 17:59:11 -0700115with_gallium_r300 = false
Dylan Baker5060c512017-10-25 18:55:38 -0700116with_gallium_r600 = false
Dylan Baker813b4b02017-10-09 14:59:35 -0700117with_gallium_nouveau = false
Rob Clark4aa69cc2017-10-14 10:08:50 -0400118with_gallium_freedreno = false
Dylan Bakerf3d03a22017-10-10 11:57:50 -0700119with_gallium_softpipe = false
Eric Anholt1ae80182017-10-12 13:53:12 -0700120with_gallium_vc4 = false
Eric Anholt4f3e3802017-10-12 18:40:16 -0700121with_gallium_vc5 = false
Dylan Baker51558a12017-10-20 15:45:22 -0700122with_gallium_etnaviv = false
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700123with_gallium_imx = false
Dylan Baker9169dde2017-10-25 16:54:53 -0700124with_gallium_i915 = false
Dylan Bakera5372312017-10-26 14:19:19 -0700125with_gallium_svga = false
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700126with_gallium_virgl = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700127_drivers = get_option('gallium-drivers')
Dylan Baker18733272017-10-30 10:17:22 -0700128if _drivers == 'auto'
129 if not ['darwin', 'windows'].contains(host_machine.system())
130 # TODO: PPC, Sparc
131 if ['x86', 'x86_64'].contains(host_machine.cpu_family())
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700132 _drivers = 'r300,r600,radeonsi,nouveau,virgl,svga,swrast'
Dylan Baker18733272017-10-30 10:17:22 -0700133 elif ['arm', 'aarch64'].contains(host_machine.cpu_family())
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700134 _drivers = 'pl111,vc4,vc5,freedreno,etnaviv,imx,virgl,svga,swrast'
Dylan Baker18733272017-10-30 10:17:22 -0700135 else
136 error('Unknown architecture. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.')
137 endif
138 else
139 error('Unknown OS. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.')
140 endif
141endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700142if _drivers != ''
143 _split = _drivers.split(',')
Dylan Bakerfbf39fd2017-10-17 14:44:15 -0700144 with_gallium_pl111 = _split.contains('pl111')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700145 with_gallium_radeonsi = _split.contains('radeonsi')
Dylan Baker4ae08292017-10-25 17:59:11 -0700146 with_gallium_r300 = _split.contains('r300')
Dylan Baker5060c512017-10-25 18:55:38 -0700147 with_gallium_r600 = _split.contains('r600')
Dylan Baker813b4b02017-10-09 14:59:35 -0700148 with_gallium_nouveau = _split.contains('nouveau')
Rob Clark4aa69cc2017-10-14 10:08:50 -0400149 with_gallium_freedreno = _split.contains('freedreno')
Dylan Bakerde24d612017-10-10 14:27:19 -0700150 with_gallium_softpipe = _split.contains('swrast')
Eric Anholt1ae80182017-10-12 13:53:12 -0700151 with_gallium_vc4 = _split.contains('vc4')
Eric Anholt4f3e3802017-10-12 18:40:16 -0700152 with_gallium_vc5 = _split.contains('vc5')
Dylan Baker51558a12017-10-20 15:45:22 -0700153 with_gallium_etnaviv = _split.contains('etnaviv')
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700154 with_gallium_imx = _split.contains('imx')
Dylan Baker9169dde2017-10-25 16:54:53 -0700155 with_gallium_i915 = _split.contains('i915')
Dylan Bakera5372312017-10-26 14:19:19 -0700156 with_gallium_svga = _split.contains('svga')
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700157 with_gallium_virgl = _split.contains('virgl')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700158 with_gallium = true
Ville Syrjälä22899642017-10-10 01:15:42 +0300159endif
160
Jason Ekstrand00fb21b2017-11-11 10:30:35 -0800161with_intel_vk = false
162with_amd_vk = false
163with_any_vk = false
164_vulkan_drivers = get_option('vulkan-drivers')
165if _vulkan_drivers == 'auto'
166 if not ['darwin', 'windows'].contains(host_machine.system())
167 if host_machine.cpu_family().startswith('x86')
168 _vulkan_drivers = 'amd,intel'
169 else
170 error('Unknown architecture. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.')
171 endif
172 else
173 # No vulkan driver supports windows or macOS currently
174 _vulkan_drivers = ''
175 endif
176endif
177if _vulkan_drivers != ''
178 _split = _vulkan_drivers.split(',')
179 with_intel_vk = _split.contains('intel')
180 with_amd_vk = _split.contains('amd')
181 with_any_vk = with_amd_vk or with_intel_vk
182endif
183
Dylan Bakerde24d612017-10-10 14:27:19 -0700184if with_dri_swrast and with_gallium_softpipe
185 error('Only one swrast provider can be built')
186endif
Dylan Baker9169dde2017-10-25 16:54:53 -0700187if with_dri_i915 and with_gallium_i915
188 error('Only one i915 provider can be built')
189endif
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700190if with_gallium_imx and not with_gallium_etnaviv
191 error('IMX driver requires etnaviv driver')
192endif
Dylan Bakerde24d612017-10-10 14:27:19 -0700193
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700194dep_libdrm_intel = []
Dylan Baker9169dde2017-10-25 16:54:53 -0700195if with_dri_i915 or with_gallium_i915
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700196 dep_libdrm_intel = dependency('libdrm_intel', version : '>= 2.4.75')
197endif
198
Dylan Baker33627d22017-10-27 17:20:52 -0700199if host_machine.system() == 'darwin'
200 with_dri_platform = 'apple'
201elif ['windows', 'cygwin'].contains(host_machine.system())
202 with_dri_platform = 'windows'
203elif host_machine.system() == 'linux'
204 # FIXME: This should include BSD and possibly other systems
205 with_dri_platform = 'drm'
206else
207 # FIXME: haiku doesn't use dri, and xlib doesn't use dri, probably should
208 # assert here that one of those cases has been met.
209 # FIXME: GNU (hurd) ends up here as well, but meson doesn't officially
210 # support Hurd at time of writing (2017/11)
211 with_dri_platform = 'none'
212endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700213
Eric Engestromc5ec1552017-10-24 16:08:15 +0100214with_platform_android = false
Dylan Bakerd1992252017-09-14 17:57:17 -0700215with_platform_wayland = false
216with_platform_x11 = false
Dylan Bakerb1b65392017-09-28 22:25:02 -0700217with_platform_drm = false
Dylan Baker108d2572017-10-18 12:20:43 -0700218with_platform_surfaceless = false
219egl_native_platform = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700220_platforms = get_option('platforms')
Dylan Baker4b61b072017-11-15 17:31:32 -0800221if _platforms == 'auto'
222 if ['linux'].contains(host_machine.system())
223 _platforms = 'x11,wayland,drm,surfaceless'
224 else
225 error('Unknown OS, no platforms enabled. Patches gladly accepted to fix this.')
226 endif
227endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700228if _platforms != ''
229 _split = _platforms.split(',')
Eric Engestromc5ec1552017-10-24 16:08:15 +0100230 with_platform_android = _split.contains('android')
Dylan Bakerd1992252017-09-14 17:57:17 -0700231 with_platform_x11 = _split.contains('x11')
232 with_platform_wayland = _split.contains('wayland')
Dylan Bakerb1b65392017-09-28 22:25:02 -0700233 with_platform_drm = _split.contains('drm')
Dylan Baker108d2572017-10-18 12:20:43 -0700234 with_platform_surfaceless = _split.contains('surfaceless')
235 egl_native_platform = _split[0]
Dylan Bakerd1992252017-09-14 17:57:17 -0700236endif
237
Dylan Baker118a7f02017-11-01 17:42:41 -0700238with_glx = get_option('glx')
239if with_glx == 'auto'
240 if with_dri
241 with_glx = 'dri'
242 elif with_gallium
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700243 # Even when building just gallium drivers the user probably wants dri
244 with_glx = 'dri'
245 with_dri = true
Dylan Baker118a7f02017-11-01 17:42:41 -0700246 elif with_platform_x11 and with_any_opengl and not with_any_vk
247 # The automatic behavior should not be to turn on xlib based glx when
248 # building only vulkan drivers
249 with_glx = 'xlib'
250 else
251 with_glx = 'disabled'
252 endif
253endif
254
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700255if not (with_dri or with_gallium or with_glx == 'xlib' or with_glx == 'gallium-xlib')
Dylan Baker118a7f02017-11-01 17:42:41 -0700256 with_gles1 = false
257 with_gles2 = false
258 with_opengl = false
259 with_any_opengl = false
260 with_shared_glapi = false
261endif
262
Dylan Baker816bf7d12017-09-28 15:53:53 -0700263with_gbm = get_option('gbm')
264if with_gbm == 'auto' and with_dri # TODO: or gallium
265 with_gbm = host_machine.system() == 'linux'
Dylan Baker05893312017-10-30 10:27:48 -0700266elif with_gbm == 'true'
Dylan Baker816bf7d12017-09-28 15:53:53 -0700267 if not ['linux', 'bsd'].contains(host_machine.system())
268 error('GBM only supports unix-like platforms')
269 endif
270 with_gbm = true
271else
272 with_gbm = false
273endif
274
Dylan Baker108d2572017-10-18 12:20:43 -0700275_egl = get_option('egl')
276if _egl == 'auto'
277 with_egl = with_dri and with_shared_glapi and egl_native_platform != ''
Dylan Baker05893312017-10-30 10:27:48 -0700278elif _egl == 'true'
Dylan Baker108d2572017-10-18 12:20:43 -0700279 if not with_dri
280 error('EGL requires dri')
281 elif not with_shared_glapi
282 error('EGL requires shared-glapi')
283 elif egl_native_platform == ''
284 error('No platforms specified, consider -Dplatforms=drm,x11 at least')
285 endif
286 with_egl = true
287else
288 with_egl = false
289endif
290
Dylan Baker43b0e5f2017-10-26 15:45:40 -0700291if with_egl and not (with_platform_drm or with_platform_surfaceless)
292 if with_gallium_radeonsi
293 error('RadeonSI requires drm or surfaceless platform when using EGL')
294 endif
295 if with_gallium_virgl
296 error('Virgl requires drm or surfaceless platform when using EGL')
297 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700298endif
299
Dylan Baker8e611872017-10-11 12:49:31 -0700300pre_args += '-DGLX_USE_TLS'
Dylan Bakera47c5252017-09-22 12:55:00 -0700301if with_glx != 'disabled'
Dylan Baker8d3b1212017-10-18 15:47:11 -0700302 if not (with_platform_x11 and with_any_opengl)
303 if with_glx == 'auto'
304 with_glx = 'disabled'
305 else
306 error('Cannot build GLX support without X11 platform support and at least one OpenGL API')
307 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700308 elif with_glx == 'gallium-xlib'
309 if not with_gallium
310 error('Gallium-xlib based GLX requires at least one gallium driver')
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700311 elif not with_gallium_softpipe
312 error('Gallium-xlib based GLX requires softpipe or llvmpipe.')
Dylan Bakera47c5252017-09-22 12:55:00 -0700313 elif with_dri
314 error('gallium-xlib conflicts with any dri driver')
315 endif
Dylan Baker118a7f02017-11-01 17:42:41 -0700316 elif with_glx == 'xlib'
317 if with_dri
318 error('xlib conflicts with any dri driver')
319 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700320 elif with_glx == 'dri' and not with_dri
321 error('dri based GLX requires at least one DRI driver')
Dylan Bakera47c5252017-09-22 12:55:00 -0700322 endif
323endif
324
325with_glvnd = get_option('glvnd')
Dylan Baker8a36f022017-11-01 10:24:10 -0700326if with_glvnd
327 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
328 error('Cannot build glvnd support for GLX that is not DRI based.')
329 elif with_glx == 'disabled' and not with_egl
330 error('glvnd requires DRI based GLX and/or EGL')
331 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700332endif
333
334# TODO: toggle for this
335with_glx_direct = true
336
Dylan Bakerd1992252017-09-14 17:57:17 -0700337if with_vulkan_icd_dir == ''
338 with_vulkan_icd_dir = join_paths(get_option('datadir'), 'vulkan/icd.d')
339endif
340
Dylan Baker50c28df2017-09-29 17:53:01 -0700341with_dri2 = (with_dri or with_any_vk) and with_dri_platform == 'drm'
342with_dri3 = get_option('dri3')
343if with_dri3 == 'auto'
344 if host_machine.system() == 'linux' and with_dri2
345 with_dri3 = true
346 else
347 with_dri3 = false
348 endif
Dylan Baker05893312017-10-30 10:27:48 -0700349elif with_dri3 == 'true'
Dylan Baker50c28df2017-09-29 17:53:01 -0700350 with_dri3 = true
351else
352 with_dri3 = false
353endif
354
355if with_any_vk and (with_platform_x11 and not with_dri3)
356 error('Vulkan drivers require dri3 for X11 support')
357endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700358if with_dri or with_gallium
Dylan Baker108d2572017-10-18 12:20:43 -0700359 if with_glx == 'disabled' and not with_egl
Dylan Bakera47c5252017-09-22 12:55:00 -0700360 error('building dri or gallium drivers require at least one window system')
361 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700362endif
363
Dylan Baker68076b82017-10-30 14:04:21 -0700364dep_vdpau = []
365_vdpau = get_option('gallium-vdpau')
366if _vdpau == 'auto'
367 if not ['linux', 'bsd'].contains(host_machine.system())
368 with_gallium_vdpau = false
369 elif not with_platform_x11
370 with_gallium_vdpau = false
371 elif not (with_gallium_r300 or with_gallium_r600 or with_gallium_radeonsi or
372 with_gallium_nouveau)
373 with_gallium_vdpau = false
374 else
375 dep_vdpau = dependency('vdpau', version : '>= 1.1', required : false)
376 with_gallium_vdpau = dep_vdpau.found()
377 endif
378elif _vdpau == 'true'
379 if not ['linux', 'bsd'].contains(host_machine.system())
380 error('VDPAU state tracker can only be build on unix-like OSes.')
381 elif not with_platform_x11
382 error('VDPAU state tracker requires X11 support.')
383 with_gallium_vdpau = false
384 elif not (with_gallium_r300 or with_gallium_r600 or with_gallium_radeonsi or
385 with_gallium_nouveau)
386 error('VDPAU state tracker requires at least one of the following gallium drivers: r300, r600, radeonsi, nouveau.')
387 endif
388 dep_vdpau = dependency('vdpau', version : '>= 1.1')
389 with_gallium_vdpau = true
390else
391 with_gallium_vdpau = false
392endif
393if with_gallium_vdpau
394 dep_vdpau = declare_dependency(
395 compile_args : dep_vdpau.get_pkgconfig_variable('cflags').split()
396 )
397endif
398
399if with_gallium_vdpau
400 pre_args += '-DHAVE_ST_VDPAU'
401endif
402vdpau_drivers_path = get_option('vdpau-libs-path')
403if vdpau_drivers_path == ''
404 vdpau_drivers_path = join_paths(get_option('libdir'), 'vdpau')
405endif
406
Dylan Baker22a817a2017-10-30 14:32:30 -0700407dep_xvmc = []
408_xvmc = get_option('gallium-xvmc')
409if _xvmc == 'auto'
410 if not ['linux', 'bsd'].contains(host_machine.system())
411 with_gallium_xvmc = false
412 elif not with_platform_x11
413 with_gallium_xvmc = false
414 elif not (with_gallium_r600 or with_gallium_nouveau)
415 with_gallium_xvmc = false
416 else
417 dep_xvmc = dependency('xvmc', version : '>= 1.0.6', required : false)
418 with_gallium_xvmc = dep_xvmc.found()
419 endif
420elif _xvmc == 'true'
421 if not ['linux', 'bsd'].contains(host_machine.system())
422 error('XVMC state tracker can only be build on unix-like OSes.')
423 elif not with_platform_x11
424 error('XVMC state tracker requires X11 support.')
425 with_gallium_xvmc = false
426 elif not (with_gallium_r600 or with_gallium_nouveau)
427 error('XVMC state tracker requires at least one of the following gallium drivers: r600, nouveau.')
428 endif
429 dep_xvmc = dependency('xvmc', version : '>= 1.0.6')
430 with_gallium_xvmc = true
431else
432 with_gallium_xvmc = false
433endif
434if with_gallium_xvmc
435 dep_xvmc = declare_dependency(
436 compile_args : dep_xvmc.get_pkgconfig_variable('cflags').split()
437 )
438endif
439
440xvmc_drivers_path = get_option('xvmc-libs-path')
441if xvmc_drivers_path == ''
442 xvmc_drivers_path = get_option('libdir')
443endif
444
Dylan Baker108d2572017-10-18 12:20:43 -0700445gl_pkgconfig_c_flags = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700446if with_platform_x11
447 if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
448 pre_args += '-DHAVE_X11_PLATFORM'
449 endif
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700450 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
Dylan Baker118a7f02017-11-01 17:42:41 -0700451 pre_args += '-DUSE_XSHM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700452 else
453 pre_args += '-DGLX_INDIRECT_RENDERING'
454 if with_glx_direct
455 pre_args += '-DGLX_DIRECT_RENDERING'
456 endif
457 if with_dri_platform == 'drm'
458 pre_args += '-DGLX_USE_DRM'
Jon Turney9cdd41b2017-11-23 13:40:06 +0000459 elif with_dri_platform == 'windows'
460 pre_args += '-DGLX_USE_WINDOWSGL'
Dylan Baker50c28df2017-09-29 17:53:01 -0700461 endif
462 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700463else
464 pre_args += '-DMESA_EGL_NO_X11_HEADERS'
465 gl_pkgconfig_c_flags += '-DMESA_EGL_NO_X11_HEADERS'
466endif
467if with_platform_drm
468 if with_egl and not with_gbm
469 error('EGL drm platform requires gbm')
470 endif
471 pre_args += '-DHAVE_DRM_PLATFORM'
472endif
473if with_platform_surfaceless
474 pre_args += '-DHAVE_SURFACELESS_PLATFORM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700475endif
Eric Engestromc5ec1552017-10-24 16:08:15 +0100476if with_platform_android
477 dep_android = [
478 dependency('cutils'),
479 dependency('hardware'),
480 dependency('sync'),
481 ]
482 pre_args += '-DHAVE_ANDROID_PLATFORM'
483endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700484
Dylan Bakerd1992252017-09-14 17:57:17 -0700485prog_python2 = find_program('python2')
Dylan Baker9342a7d2017-09-28 10:48:30 -0700486has_mako = run_command(prog_python2, '-c', 'import mako')
487if has_mako.returncode() != 0
488 error('Python (2.x) mako module required to build mesa.')
489endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700490
491cc = meson.get_compiler('c')
492if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6')
Eric Engestrom1262e822017-09-29 15:25:18 +0100493 error('When using GCC, version 4.4.6 or later is required.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700494endif
495
Eric Engestrom1e6f9ea2017-11-06 17:18:06 +0000496# Define DEBUG for debug builds only (debugoptimized is not included on this one)
497if get_option('buildtype') == 'debug'
Dylan Bakerd1992252017-09-14 17:57:17 -0700498 pre_args += '-DDEBUG'
499endif
500
Dylan Baker673dda82017-09-20 11:53:29 -0700501if get_option('shader-cache')
502 pre_args += '-DENABLE_SHADER_CACHE'
503elif with_amd_vk
504 error('Radv requires shader cache support')
505endif
506
Dylan Bakerd1992252017-09-14 17:57:17 -0700507# Check for GCC style builtins
508foreach b : ['bswap32', 'bswap64', 'clz', 'clzll', 'ctz', 'expect', 'ffs',
509 'ffsll', 'popcount', 'popcountll', 'unreachable']
510 if cc.has_function(b)
511 pre_args += '-DHAVE___BUILTIN_@0@'.format(b.to_upper())
512 endif
513endforeach
514
Dylan Baker673dda82017-09-20 11:53:29 -0700515# check for GCC __attribute__
Dylan Bakerd1992252017-09-14 17:57:17 -0700516foreach a : ['const', 'flatten', 'malloc', 'pure', 'unused',
517 'warn_unused_result', 'weak',]
518 if cc.compiles('int foo(void) __attribute__((@0@));'.format(a),
519 name : '__attribute__((@0@))'.format(a))
520 pre_args += '-DHAVE_FUNC_ATTRIBUTE_@0@'.format(a.to_upper())
521 endif
522endforeach
523if cc.compiles('int foo(const char *p, ...) __attribute__((format(printf, 1, 2)));',
524 name : '__attribute__((format(...)))')
525 pre_args += '-DHAVE_FUNC_ATTRIBUTE_FORMAT'
526endif
527if cc.compiles('struct __attribute__((packed)) foo { int bar; };',
528 name : '__attribute__((packed))')
529 pre_args += '-DHAVE_FUNC_ATTRIBUTE_PACKED'
530endif
531if cc.compiles('int *foo(void) __attribute__((returns_nonnull));',
532 name : '__attribute__((returns_nonnull))')
533 pre_args += '-DHAVE_FUNC_ATTRIBUTE_NONNULL'
534endif
535if cc.compiles('''int foo_def(void) __attribute__((visibility("default")));
536 int foo_hid(void) __attribute__((visibility("hidden")));
537 int foo_int(void) __attribute__((visibility("internal")));
538 int foo_pro(void) __attribute__((visibility("protected")));''',
539 name : '__attribute__((visibility(...)))')
540 pre_args += '-DHAVE_FUNC_ATTRIBUTE_VISBILITY'
541endif
542if cc.compiles('int foo(void) { return 0; } int bar(void) __attribute__((alias("foo")));',
543 name : '__attribute__((alias(...)))')
544 pre_args += '-DHAVE_FUNC_ATTRIBUTE_ALIAS'
545endif
Jason Ekstrand0c49aa02017-08-16 17:16:45 -0700546if cc.compiles('int foo(void) __attribute__((__noreturn__));',
547 name : '__attribute__((__noreturn__))')
548 pre_args += '-DHAVE_FUNC_ATTRIBUTE_NORETURN'
549endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700550
551# TODO: this is very incomplete
Jon Turneydbe36e32017-11-23 13:42:00 +0000552if ['linux', 'cygwin'].contains(host_machine.system())
Dylan Bakerd1992252017-09-14 17:57:17 -0700553 pre_args += '-D_GNU_SOURCE'
554endif
555
556# Check for generic C arguments
557c_args = []
558foreach a : ['-Wall', '-Werror=implicit-function-declaration',
559 '-Werror=missing-prototypes', '-fno-math-errno',
560 '-fno-trapping-math', '-Qunused-arguments']
561 if cc.has_argument(a)
562 c_args += a
563 endif
564endforeach
565c_vis_args = []
566if cc.has_argument('-fvisibility=hidden')
567 c_vis_args += '-fvisibility=hidden'
568endif
569
570# Check for generic C++ arguments
571cpp = meson.get_compiler('cpp')
572cpp_args = []
573foreach a : ['-Wall', '-fno-math-errno', '-fno-trapping-math',
Marc Dietrichd93fabb2017-11-29 22:25:05 +0100574 '-Qunused-arguments']
Dylan Bakerd1992252017-09-14 17:57:17 -0700575 if cpp.has_argument(a)
576 cpp_args += a
577 endif
578endforeach
Marc Dietrichd93fabb2017-11-29 22:25:05 +0100579
580# For some reason, the test for -Wno-foo always succeeds with gcc, even if the
581# option is not supported. Hence, check for -Wfoo instead.
582if cpp.has_argument('-Wnon-virtual-dtor')
583 cpp_args += '-Wno-non-virtual-dtor'
584endif
585
586no_override_init_args = []
587foreach a : ['override-init', 'initializer-overrides']
588 if cc.has_argument('-W' + a)
589 no_override_init_args += '-Wno-' + a
590 endif
591endforeach
592
Dylan Bakerd1992252017-09-14 17:57:17 -0700593cpp_vis_args = []
594if cpp.has_argument('-fvisibility=hidden')
595 cpp_vis_args += '-fvisibility=hidden'
596endif
597
598# Check for C and C++ arguments for MSVC2013 compatibility. These are only used
599# in parts of the mesa code base that need to compile with old versions of
600# MSVC, mainly common code
601c_msvc_compat_args = []
602cpp_msvc_compat_args = []
603foreach a : ['-Werror=pointer-arith', '-Werror=vla']
604 if cc.has_argument(a)
605 c_msvc_compat_args += a
606 endif
607 if cpp.has_argument(a)
608 cpp_msvc_compat_args += a
609 endif
610endforeach
611
Dylan Baker84486f62017-11-15 16:09:22 -0800612if host_machine.cpu_family().startswith('x86')
613 pre_args += '-DHAVE_SSE41'
614 with_sse41 = true
615 sse41_args = ['-msse4.1']
616
617 # GCC on x86 (not x86_64) with -msse* assumes a 16 byte aligned stack, but
618 # that's not guaranteed
619 if host_machine.cpu_family() == 'x86'
620 sse41_args += '-mstackrealign'
621 endif
622else
623 with_sse41 = false
624 sse41_args = []
625endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700626
627# Check for GCC style atomics
628if cc.compiles('int main() { int n; return __atomic_load_n(&n, __ATOMIC_ACQUIRE); }',
629 name : 'GCC atomic builtins')
630 pre_args += '-DUSE_GCC_ATOMIC_BUILTINS'
631endif
632if not cc.links('''#include <stdint.h>
633 uint64_t v;
634 int main() {
635 return __sync_add_and_fetch(&v, (uint64_t)1);
636 }''',
637 name : 'GCC 64bit atomics')
638 pre_args += '-DMISSING_64_BIT_ATOMICS'
639endif
640
641# TODO: endian
642# TODO: powr8
643# TODO: shared/static? Is this even worth doing?
644
Dylan Baker2d62fc02017-11-15 16:53:40 -0800645# Building x86 assembly code requires running x86 binaries. It is possible for
646# x86_64 OSes to run x86 binaries, so don't disable asm in those cases
647# TODO: it should be possible to use an exe_wrapper to run the binary during
648# the build.
649if meson.is_cross_build()
650 if not (build_machine.cpu_family() == 'x86_64' and host_machine.cpu_family() == 'x86'
651 and build_machine.system() == host_machine.system())
652 message('Cross compiling to x86 from non-x86, disabling asm')
653 with_asm = false
654 endif
Dylan Baker32180562017-09-20 20:11:32 -0700655endif
656
657with_asm_arch = ''
658if with_asm
659 # TODO: SPARC and PPC
660 if host_machine.cpu_family() == 'x86'
661 if ['linux', 'bsd'].contains(host_machine.system()) # FIXME: hurd?
662 with_asm_arch = 'x86'
663 pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM',
664 '-DUSE_SSE_ASM']
665 endif
666 elif host_machine.cpu_family() == 'x86_64'
667 if host_machine.system() == 'linux'
668 with_asm_arch = 'x86_64'
669 pre_args += ['-DUSE_X86_64_ASM']
670 endif
671 elif host_machine.cpu_family() == 'arm'
672 if host_machine.system() == 'linux'
673 with_asm_arch = 'arm'
674 pre_args += ['-DUSE_ARM_ASM']
675 endif
676 elif host_machine.cpu_family() == 'aarch64'
677 if host_machine.system() == 'linux'
678 with_asm_arch = 'aarch64'
679 pre_args += ['-DUSE_AARCH64_ASM']
680 endif
681 endif
682endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700683
684# Check for standard headers and functions
685if cc.has_header_symbol('sys/sysmacros.h', 'major')
686 pre_args += '-DMAJOR_IN_SYSMACROS'
687elif cc.has_header_symbol('sys/mkdev.h', 'major')
688 pre_args += '-DMAJOR_IN_MKDEV'
689endif
690
Timothy Arcerif98a2762017-10-16 18:06:49 +1100691foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h']
Dylan Bakerd1992252017-09-14 17:57:17 -0700692 if cc.has_header(h)
693 pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify())
694 endif
695endforeach
696
Vinson Lee8c1e4b12017-11-28 23:16:58 -0800697foreach f : ['strtof', 'mkostemp', 'posix_memalign', 'timespec_get', 'memfd_create']
Dylan Bakerd1992252017-09-14 17:57:17 -0700698 if cc.has_function(f)
699 pre_args += '-DHAVE_@0@'.format(f.to_upper())
700 endif
701endforeach
702
703# strtod locale support
704if cc.links('''
705 #define _GNU_SOURCE
706 #include <stdlib.h>
707 #include <locale.h>
708 #ifdef HAVE_XLOCALE_H
709 #include <xlocale.h>
710 #endif
711 int main() {
712 locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
713 const char *s = "1.0";
714 char *end;
715 double d = strtod_l(s, end, loc);
Eric Engestromab0809e2017-11-21 14:24:01 +0000716 float f = strtof_l(s, end, loc);
Dylan Bakerd1992252017-09-14 17:57:17 -0700717 freelocale(loc);
718 return 0;
719 }''',
720 extra_args : pre_args,
721 name : 'strtod has locale support')
722 pre_args += '-DHAVE_STRTOD_L'
723endif
724
725# Check for some linker flags
726ld_args_bsymbolic = []
Dylan Bakere21e0a62017-09-30 13:15:52 -0700727if cc.links('int main() { return 0; }', args : '-Wl,-Bsymbolic', name : 'Bsymbolic')
Dylan Bakerd1992252017-09-14 17:57:17 -0700728 ld_args_bsymbolic += '-Wl,-Bsymbolic'
729endif
730ld_args_gc_sections = []
731if cc.links('static char unused() { return 5; } int main() { return 0; }',
Dylan Bakere21e0a62017-09-30 13:15:52 -0700732 args : '-Wl,--gc-sections', name : 'gc-sections')
Dylan Bakerd1992252017-09-14 17:57:17 -0700733 ld_args_gc_sections += '-Wl,--gc-sections'
734endif
Dylan Bakere21e0a62017-09-30 13:15:52 -0700735with_ld_version_script = false
736if cc.links('int main() { return 0; }',
737 args : '-Wl,--version-script=@0@'.format(
738 join_paths(meson.source_root(), 'build-support/conftest.map')),
739 name : 'version-script')
740 with_ld_version_script = true
741endif
742with_ld_dynamic_list = false
743if cc.links('int main() { return 0; }',
744 args : '-Wl,--dynamic-list=@0@'.format(
745 join_paths(meson.source_root(), 'build-support/conftest.dyn')),
746 name : 'dynamic-list')
747 with_ld_dynamic_list = true
748endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700749
750# check for dl support
751if cc.has_function('dlopen')
752 dep_dl = []
753else
754 dep_dl = cc.find_library('dl')
755endif
Dylan Baker32180562017-09-20 20:11:32 -0700756if cc.has_function('dladdr', dependencies : dep_dl)
757 # This is really only required for megadrivers
758 pre_args += '-DHAVE_DLADDR'
Dylan Bakerd1992252017-09-14 17:57:17 -0700759endif
760
761if cc.has_function('dl_iterate_phdr')
762 pre_args += '-DHAVE_DL_ITERATE_PHDR'
Dylan Bakere89842e2017-11-15 17:07:37 -0800763elif with_intel_vk
764 error('Intel "Anvil" Vulkan driver requires the dl_iterate_phdr function')
765elif with_dri_i965 and get_option('shader-cache')
766 error('Intel i965 GL driver requires dl_iterate_phdr when built with shader caching.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700767endif
768
769# Determine whether or not the rt library is needed for time functions
770if cc.has_function('clock_gettime')
771 dep_clock = []
772else
773 dep_clock = cc.find_library('rt')
774endif
775
Dylan Baker66c94b92017-09-30 13:48:34 -0700776with_gallium_drisw_kms = false
Dylan Baker50c28df2017-09-29 17:53:01 -0700777dep_libdrm = dependency('libdrm', version : '>= 2.4.75',
778 required : with_dri2 or with_dri3)
779if dep_libdrm.found()
780 pre_args += '-DHAVE_LIBDRM'
Dylan Baker66c94b92017-09-30 13:48:34 -0700781 if with_dri_platform == 'drm' and with_dri
782 with_gallium_drisw_kms = true
783 endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700784endif
785
Dylan Bakerd1992252017-09-14 17:57:17 -0700786# TODO: some of these may be conditional
787dep_zlib = dependency('zlib', version : '>= 1.2.3')
788dep_thread = dependency('threads')
Jon Turney8ceccbf2017-11-13 10:13:39 +0000789if dep_thread.found() and host_machine.system() != 'windows'
Dylan Baker50c28df2017-09-29 17:53:01 -0700790 pre_args += '-DHAVE_PTHREAD'
791endif
Dylan Baker5060c512017-10-25 18:55:38 -0700792if with_amd_vk or with_gallium_radeonsi or with_gallium_r600 # TODO: clover
793 dep_elf = dependency('libelf', required : false)
794 if not dep_elf.found()
795 dep_elf = cc.find_library('elf')
796 endif
797else
798 dep_elf = []
Dylan Bakercc4f5872017-09-27 11:30:21 -0700799endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700800dep_expat = dependency('expat')
801# this only exists on linux so either this is linux and it will be found, or
802# its not linux and and wont
803dep_m = cc.find_library('m', required : false)
Dylan Baker66f97f62017-09-30 09:03:51 -0700804
805dep_libdrm_amdgpu = []
806dep_libdrm_radeon = []
Dylan Baker813b4b02017-10-09 14:59:35 -0700807dep_libdrm_nouveau = []
Dylan Baker51558a12017-10-20 15:45:22 -0700808dep_libdrm_etnaviv = []
Rob Clark4aa69cc2017-10-14 10:08:50 -0400809dep_libdrm_freedreno = []
Dylan Baker66f97f62017-09-30 09:03:51 -0700810if with_amd_vk or with_gallium_radeonsi
Andrey Grodzovsky19fc3cd2017-11-02 10:50:39 -0400811 dep_libdrm_amdgpu = dependency('libdrm_amdgpu', version : '>= 2.4.88')
Dylan Baker66f97f62017-09-30 09:03:51 -0700812endif
Dylan Baker5060c512017-10-25 18:55:38 -0700813if (with_gallium_radeonsi or with_dri_r100 or with_dri_r200 or
814 with_gallium_r300 or with_gallium_r600)
Dylan Baker66f97f62017-09-30 09:03:51 -0700815 dep_libdrm_radeon = dependency('libdrm_radeon', version : '>= 2.4.71')
816endif
Dylan Bakereb3bb032017-10-16 17:51:47 -0700817if with_gallium_nouveau or with_dri_nouveau
Dylan Baker813b4b02017-10-09 14:59:35 -0700818 dep_libdrm_nouveau = dependency('libdrm_nouveau', version : '>= 2.4.66')
819endif
Dylan Baker51558a12017-10-20 15:45:22 -0700820if with_gallium_etnaviv
821 dep_libdrm_etnaviv = dependency('libdrm_etnaviv', version : '>= 2.4.82')
822endif
Rob Clark4aa69cc2017-10-14 10:08:50 -0400823if with_gallium_freedreno
824 dep_libdrm_freedreno = dependency('libdrm_freedreno', version : '>= 2.4.74')
825endif
Dylan Baker673dda82017-09-20 11:53:29 -0700826
827llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit']
Dylan Baker5060c512017-10-25 18:55:38 -0700828if with_amd_vk or with_gallium_radeonsi or with_gallium_r600
Dylan Baker673dda82017-09-20 11:53:29 -0700829 llvm_modules += ['amdgpu', 'bitreader', 'ipo']
Dylan Baker5060c512017-10-25 18:55:38 -0700830 if with_gallium_r600
831 llvm_modules += 'asmparser'
832 endif
Dylan Baker673dda82017-09-20 11:53:29 -0700833endif
Dylan Baker48f64e52017-11-17 16:37:50 -0800834
835_llvm = get_option('llvm')
836if _llvm == 'auto'
Eric Anholtd975e692017-11-08 11:52:09 -0800837 dep_llvm = dependency(
Dylan Baker48f64e52017-11-17 16:37:50 -0800838 'llvm', version : '>= 3.9.0', modules : llvm_modules,
Dylan Baker2d1a3bf2017-11-20 16:26:06 -0800839 required : with_amd_vk or with_gallium_radeonsi,
Eric Anholtd975e692017-11-08 11:52:09 -0800840 )
Dylan Baker48f64e52017-11-17 16:37:50 -0800841 with_llvm = dep_llvm.found()
842elif _llvm == 'true'
843 dep_llvm = dependency('llvm', version : '>= 3.9.0', modules : llvm_modules)
844 with_llvm = true
845else
846 dep_llvm = []
847 with_llvm = false
848endif
849if with_llvm
850 _llvm_version = dep_llvm.version().split('.')
851 # Development versions of LLVM have an 'svn' suffix, we don't want that for
852 # our version checks.
853 _llvm_patch = _llvm_version[2]
854 if _llvm_patch.endswith('svn')
855 _llvm_patch = _llvm_patch.split('s')[0]
Dylan Baker673dda82017-09-20 11:53:29 -0700856 endif
Dylan Baker48f64e52017-11-17 16:37:50 -0800857 pre_args += [
858 '-DHAVE_LLVM=0x0@0@@1@@2@'.format(_llvm_version[0], _llvm_version[1], _llvm_patch),
859 '-DMESA_LLVM_VERSION_PATCH=@0@'.format(_llvm_patch),
860 ]
Dylan Baker66f97f62017-09-30 09:03:51 -0700861elif with_amd_vk or with_gallium_radeonsi
862 error('The following drivers requires LLVM: Radv, RadeonSI. One of these is enabled, but LLVM is disabled.')
Dylan Baker673dda82017-09-20 11:53:29 -0700863endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700864
Dylan Bakera47c5252017-09-22 12:55:00 -0700865dep_glvnd = []
866if with_glvnd
867 dep_glvnd = dependency('libglvnd', version : '>= 0.2.0')
868 pre_args += '-DUSE_LIBGLVND=1'
869endif
870
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +0200871if with_valgrind != 'false'
872 dep_valgrind = dependency('valgrind', required : with_valgrind == 'true')
873 if dep_valgrind.found()
874 pre_args += '-DHAVE_VALGRIND'
875 endif
876else
877 dep_valgrind = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700878endif
879
880# pthread stubs. Lets not and say we didn't
881
Dylan Baker32180562017-09-20 20:11:32 -0700882prog_bison = find_program('bison', required : with_any_opengl)
883prog_flex = find_program('flex', required : with_any_opengl)
884
Dylan Baker32180562017-09-20 20:11:32 -0700885dep_selinux = []
Eric Engestrom4b9421d2017-10-26 16:19:41 +0100886if get_option('selinux')
887 dep_selinux = dependency('libselinux')
888 pre_args += '-DMESA_SELINUX'
889endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700890
891# TODO: llvm-prefix and llvm-shared-libs
892
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +0200893if with_libunwind != 'false'
894 dep_unwind = dependency('libunwind', required : with_libunwind == 'true')
895 if dep_unwind.found()
896 pre_args += '-DHAVE_LIBUNWIND'
897 endif
898else
899 dep_unwind = []
Dylan Bakerb1b65392017-09-28 22:25:02 -0700900endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700901
Dylan Bakerd1992252017-09-14 17:57:17 -0700902# TODO: gallium-hud
903
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700904if with_osmesa != 'none'
905 if with_osmesa == 'classic' and not with_dri_swrast
906 error('OSMesa classic requires dri (classic) swrast.')
907 endif
Dylan Bakerf121a662017-10-24 15:52:57 -0700908 if with_osmesa == 'gallium' and not with_gallium_softpipe
909 error('OSMesa gallium requires gallium softpipe or llvmpipe.')
910 endif
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700911 osmesa_lib_name = 'OSMesa'
912 osmesa_bits = get_option('osmesa-bits')
913 if osmesa_bits != '8'
914 if with_dri or with_glx != 'disabled'
915 error('OSMesa bits must be 8 if building glx or dir based drivers')
916 endif
917 osmesa_lib_name = osmesa_lib_name + osmesa_bits
918 pre_args += [
919 '-DCHAN_BITS=@0@'.format(osmesa_bits), '-DDEFAULT_SOFTWARE_DEPTH_BITS=31'
920 ]
921 endif
922endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700923
Dylan Bakerd1992252017-09-14 17:57:17 -0700924# TODO: symbol mangling
925
Dylan Bakerd1992252017-09-14 17:57:17 -0700926if with_platform_wayland
927 prog_wl_scanner = find_program('wayland-scanner')
928 dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.8')
929 dep_wayland_client = dependency('wayland-client', version : '>=1.11')
930 dep_wayland_server = dependency('wayland-server', version : '>=1.11')
Dylan Baker108d2572017-10-18 12:20:43 -0700931 wayland_dmabuf_xml = join_paths(
932 dep_wl_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable',
933 'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'
934 )
935 pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED']
Dylan Bakerd1992252017-09-14 17:57:17 -0700936else
937 prog_wl_scanner = []
938 dep_wl_protocols = []
939 dep_wayland_client = []
940 dep_wayland_server = []
Dylan Baker108d2572017-10-18 12:20:43 -0700941 wayland_dmabuf_xml = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700942endif
943
Dylan Baker50c28df2017-09-29 17:53:01 -0700944dep_x11 = []
945dep_xext = []
946dep_xdamage = []
947dep_xfixes = []
948dep_x11_xcb = []
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700949dep_xcb = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700950dep_xcb_glx = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700951dep_xcb_dri2 = []
952dep_xcb_dri3 = []
Dylan Bakera47c5252017-09-22 12:55:00 -0700953dep_dri2proto = []
954dep_glproto = []
Dylan Baker1f11ac42017-10-24 11:34:04 -0700955dep_xxf86vm = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700956dep_xcb_dri3 = []
957dep_xcb_present = []
958dep_xcb_sync = []
Dylan Baker108d2572017-10-18 12:20:43 -0700959dep_xcb_xfixes = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700960dep_xshmfence = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700961if with_platform_x11
Dylan Bakerad9c2f52017-11-02 13:36:44 -0700962 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
Dylan Baker118a7f02017-11-01 17:42:41 -0700963 dep_x11 = dependency('x11')
964 dep_xext = dependency('xext')
965 dep_xcb = dependency('xcb')
Jon Turney6f0ce262017-11-23 13:51:43 +0000966 elif with_glx == 'dri'
Dylan Baker50c28df2017-09-29 17:53:01 -0700967 dep_x11 = dependency('x11')
968 dep_xext = dependency('xext')
969 dep_xdamage = dependency('xdamage', version : '>= 1.1')
970 dep_xfixes = dependency('xfixes')
971 dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1')
Dylan Baker1f11ac42017-10-24 11:34:04 -0700972 dep_xxf86vm = dependency('xxf86vm', required : false)
Dylan Bakera47c5252017-09-22 12:55:00 -0700973 endif
Dylan Baker22a817a2017-10-30 14:32:30 -0700974 if with_any_vk or with_glx == 'dri' or
975 (with_gallium_vdpau or with_gallium_xvmc)
Dylan Baker50c28df2017-09-29 17:53:01 -0700976 dep_xcb = dependency('xcb')
977 dep_x11_xcb = dependency('x11-xcb')
Jon Turney6f0ce262017-11-23 13:51:43 +0000978 endif
979 if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
Dylan Baker50c28df2017-09-29 17:53:01 -0700980 dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8')
981
Dylan Bakera47c5252017-09-22 12:55:00 -0700982 if with_dri3
983 pre_args += '-DHAVE_DRI3'
Dylan Baker50c28df2017-09-29 17:53:01 -0700984 dep_xcb_dri3 = dependency('xcb-dri3')
985 dep_xcb_present = dependency('xcb-present')
986 dep_xcb_sync = dependency('xcb-sync')
987 dep_xshmfence = dependency('xshmfence', version : '>= 1.1')
Dylan Bakera47c5252017-09-22 12:55:00 -0700988 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700989 endif
Dylan Baker118a7f02017-11-01 17:42:41 -0700990 if with_glx == 'dri'
Jon Turney3ae998a2017-11-23 14:01:57 +0000991 if with_dri_platform == 'drm'
992 dep_dri2proto = dependency('dri2proto', version : '>= 2.8')
993 endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700994 dep_glproto = dependency('glproto', version : '>= 1.4.14')
995 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700996 if with_egl
997 dep_xcb_xfixes = dependency('xcb-xfixes')
998 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700999endif
1000
Dylan Baker73092072017-11-28 16:31:06 -08001001if get_option('gallium-extra-hud')
1002 pre_args += '-DHAVE_GALLIUM_EXTRA_HUD=1'
1003endif
1004
Dylan Baker5e71efe2017-11-28 16:42:37 -08001005_sensors = get_option('lmsensors')
1006if _sensors != 'false'
1007 dep_lmsensors = cc.find_library('libsensors', required : _sensors == 'true')
1008 if dep_lmsensors.found()
1009 pre_args += '-DHAVE_LIBSENSORS=1'
1010 endif
1011else
1012 dep_lmsensors = []
1013endif
1014
1015
Dylan Bakerd1992252017-09-14 17:57:17 -07001016# TODO: nine
1017
1018# TODO: clover
1019
Dylan Bakerd1992252017-09-14 17:57:17 -07001020# TODO: gallium tests
1021
1022# TODO: various libdirs
1023
1024# TODO: swr
1025
1026# TODO: gallium driver dirs
1027
1028# FIXME: this is a workaround for #2326
1029prog_touch = find_program('touch')
1030dummy_cpp = custom_target(
1031 'dummy_cpp',
1032 output : 'dummy.cpp',
1033 command : [prog_touch, '@OUTPUT@'],
1034)
1035
1036foreach a : pre_args
1037 add_project_arguments(a, language : ['c', 'cpp'])
1038endforeach
1039foreach a : c_args
1040 add_project_arguments(a, language : ['c'])
1041endforeach
1042foreach a : cpp_args
1043 add_project_arguments(a, language : ['cpp'])
1044endforeach
1045
1046inc_include = include_directories('include')
1047
Dylan Baker108d2572017-10-18 12:20:43 -07001048gl_priv_reqs = [
1049 'x11', 'xext', 'xdamage >= 1.1', 'xfixes', 'x11-xcb', 'xcb',
1050 'xcb-glx >= 1.8.1', 'libdrm >= 2.4.75',
1051]
Dylan Baker1f11ac42017-10-24 11:34:04 -07001052if dep_xxf86vm != [] and dep_xxf86vm.found()
Dylan Bakerb92992e2017-10-24 11:28:42 -07001053 gl_priv_reqs += 'xxf86vm'
Dylan Baker108d2572017-10-18 12:20:43 -07001054endif
1055if with_dri_platform == 'drm'
1056 gl_priv_reqs += 'xcb-dri2 >= 1.8'
1057endif
1058
1059gl_priv_libs = []
1060if dep_thread.found()
1061 gl_priv_libs += ['-lpthread', '-pthread']
1062endif
1063if dep_m.found()
1064 gl_priv_libs += '-lm'
1065endif
Jon Turney7df9a362017-11-13 10:13:54 +00001066if dep_dl != [] and dep_dl.found()
Dylan Baker108d2572017-10-18 12:20:43 -07001067 gl_priv_libs += '-ldl'
1068endif
1069
Dylan Baker32180562017-09-20 20:11:32 -07001070pkg = import('pkgconfig')
1071
Dylan Bakerd1992252017-09-14 17:57:17 -07001072subdir('include')
Eric Engestrom05a94a42017-10-24 18:03:39 +01001073subdir('bin')
Dylan Bakerd1992252017-09-14 17:57:17 -07001074subdir('src')