blob: 92b875b1a10d00e69efa53f382d9bad6619af040 [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
21project('mesa', ['c', 'cpp'], version : '17.3.0-devel', license : 'MIT',
Dylan Baker052c0d52017-09-30 20:04:09 -070022 default_options : ['c_std=c99', 'cpp_std=c++11'])
Dylan Bakerd1992252017-09-14 17:57:17 -070023
Dylan Baker32180562017-09-20 20:11:32 -070024# Arguments for the preprocessor, put these in a separate array from the C and
25# C++ (cpp in meson terminology) arguments since they need to be added to the
26# default arguments for both C and C++.
27pre_args = [
28 '-D__STDC_CONSTANT_MACROS',
29 '-D__STDC_FORMAT_MACROS',
30 '-D__STDC_LIMIT_MACROS',
31 '-DVERSION="@0@"'.format(meson.project_version()),
32 '-DPACKAGE_VERSION=VERSION',
33 '-DPACKAGE_BUGREPORT="https://bugs.freedesktop.org/enter_bug.cgi?product=Mesa"',
Dylan Baker601bd722017-10-09 14:22:07 -070034 '-D_GNU_SOURCE',
Dylan Baker32180562017-09-20 20:11:32 -070035]
36
Dylan Bakere915b8d2017-09-28 14:02:51 -070037with_vulkan_icd_dir = get_option('vulkan-icd-dir')
Dylan Bakerd1992252017-09-14 17:57:17 -070038with_tests = get_option('build-tests')
39with_valgrind = get_option('valgrind')
Dylan Baker32180562017-09-20 20:11:32 -070040with_asm = get_option('asm')
Dylan Baker02cf3a82017-10-12 09:47:30 -070041with_llvm = get_option('llvm')
Dylan Baker3b209e92017-10-10 15:25:07 -070042if get_option('texture-float')
43 pre_args += '-DTEXTURE_FLOAT_ENABLED'
44 message('WARNING: Floating-point texture enabled. Please consult docs/patents.txt and your lawyer before building mesa.')
45endif
Dylan Baker32180562017-09-20 20:11:32 -070046
47# XXX: yeah, do these
48with_appledri = false
49with_windowsdri = false
50
Dylan Bakerdb978842017-09-28 13:59:04 -070051dri_drivers_path = get_option('dri-drivers-path')
52if dri_drivers_path == ''
53 dri_drivers_path = join_paths(get_option('libdir'), 'dri')
54endif
55
Dylan Baker32180562017-09-20 20:11:32 -070056with_gles1 = get_option('gles1')
57with_gles2 = get_option('gles2')
58with_opengl = get_option('opengl')
59with_any_opengl = with_opengl or with_gles1 or with_gles2
Dylan Bakera47c5252017-09-22 12:55:00 -070060# Only build shared_glapi if at least one OpenGL API is enabled
61with_shared_glapi = get_option('shared-glapi') and with_any_opengl
Dylan Baker32180562017-09-20 20:11:32 -070062
63# TODO: these will need options, but at the moment they just control header
64# installs
Dylan Baker32180562017-09-20 20:11:32 -070065with_osmesa = false
66
67# shared-glapi is required if at least two OpenGL APIs are being built
68if not with_shared_glapi
69 if ((with_gles1 and with_gles2) or (with_gles1 and with_opengl)
70 or (with_gles2 and with_opengl))
71 error('shared-glapi required for building two or more of OpenGL, OpenGL ES 1.x, OpenGL ES 2.x')
72 endif
73endif
74
75# We require OpenGL for OpenGL ES
76if (with_gles1 or with_gles2) and not with_opengl
77 error('building OpenGL ES without OpenGL is not supported.')
78endif
79
80with_dri = false
Ville Syrjälä22899642017-10-10 01:15:42 +030081with_dri_i915 = false
Dylan Baker32180562017-09-20 20:11:32 -070082with_dri_i965 = false
Dylan Bakerc2cd5802017-10-03 17:06:22 -070083with_dri_swrast = false
Dylan Baker32180562017-09-20 20:11:32 -070084_drivers = get_option('dri-drivers')
85if _drivers != ''
86 _split = _drivers.split(',')
Ville Syrjälä22899642017-10-10 01:15:42 +030087 with_dri_i915 = _split.contains('i915')
Dylan Baker32180562017-09-20 20:11:32 -070088 with_dri_i965 = _split.contains('i965')
Dylan Bakerc2cd5802017-10-03 17:06:22 -070089 with_dri_swrast = _split.contains('swrast')
Dylan Baker32180562017-09-20 20:11:32 -070090 with_dri = true
91endif
92
Dylan Bakeraf9d2762017-09-28 21:03:07 -070093with_gallium = false
Eric Anholt1918c9b2017-10-12 18:39:08 -070094with_gallium_pl111 = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -070095with_gallium_radeonsi = false
Dylan Baker813b4b02017-10-09 14:59:35 -070096with_gallium_nouveau = false
Dylan Bakerf3d03a22017-10-10 11:57:50 -070097with_gallium_softpipe = false
Eric Anholt1ae80182017-10-12 13:53:12 -070098with_gallium_vc4 = false
Eric Anholt4f3e3802017-10-12 18:40:16 -070099with_gallium_vc5 = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700100_drivers = get_option('gallium-drivers')
101if _drivers != ''
102 _split = _drivers.split(',')
Dylan Bakerfbf39fd2017-10-17 14:44:15 -0700103 with_gallium_pl111 = _split.contains('pl111')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700104 with_gallium_radeonsi = _split.contains('radeonsi')
Dylan Baker813b4b02017-10-09 14:59:35 -0700105 with_gallium_nouveau = _split.contains('nouveau')
Dylan Bakerde24d612017-10-10 14:27:19 -0700106 with_gallium_softpipe = _split.contains('swrast')
Eric Anholt1ae80182017-10-12 13:53:12 -0700107 with_gallium_vc4 = _split.contains('vc4')
Eric Anholt4f3e3802017-10-12 18:40:16 -0700108 with_gallium_vc5 = _split.contains('vc5')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700109 with_gallium = true
110 with_dri = true
Ville Syrjälä22899642017-10-10 01:15:42 +0300111endif
112
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700113if not (with_dri or with_gallium)
Dylan Baker32180562017-09-20 20:11:32 -0700114 with_gles1 = false
115 with_gles2 = false
116 with_opengl = false
117 with_any_opengl = false
118 with_shared_glapi = false
119endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700120
Dylan Bakerde24d612017-10-10 14:27:19 -0700121if with_dri_swrast and with_gallium_softpipe
122 error('Only one swrast provider can be built')
123endif
124
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700125dep_libdrm_intel = []
126if with_dri_i915
127 dep_libdrm_intel = dependency('libdrm_intel', version : '>= 2.4.75')
128endif
129
Dylan Bakera47c5252017-09-22 12:55:00 -0700130# TODO: other OSes
131with_dri_platform = 'drm'
132
Dylan Baker108d2572017-10-18 12:20:43 -0700133# TODO: android platform
Dylan Bakerd1992252017-09-14 17:57:17 -0700134with_platform_wayland = false
135with_platform_x11 = false
Dylan Bakerb1b65392017-09-28 22:25:02 -0700136with_platform_drm = false
Dylan Baker108d2572017-10-18 12:20:43 -0700137with_platform_surfaceless = false
138egl_native_platform = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700139_platforms = get_option('platforms')
140if _platforms != ''
141 _split = _platforms.split(',')
142 with_platform_x11 = _split.contains('x11')
143 with_platform_wayland = _split.contains('wayland')
Dylan Bakerb1b65392017-09-28 22:25:02 -0700144 with_platform_drm = _split.contains('drm')
Dylan Baker108d2572017-10-18 12:20:43 -0700145 with_platform_surfaceless = _split.contains('surfaceless')
146 egl_native_platform = _split[0]
Dylan Bakerd1992252017-09-14 17:57:17 -0700147endif
148
Dylan Baker816bf7d12017-09-28 15:53:53 -0700149with_gbm = get_option('gbm')
150if with_gbm == 'auto' and with_dri # TODO: or gallium
151 with_gbm = host_machine.system() == 'linux'
152elif with_gbm == 'yes'
153 if not ['linux', 'bsd'].contains(host_machine.system())
154 error('GBM only supports unix-like platforms')
155 endif
156 with_gbm = true
157else
158 with_gbm = false
159endif
160
Dylan Baker108d2572017-10-18 12:20:43 -0700161_egl = get_option('egl')
162if _egl == 'auto'
163 with_egl = with_dri and with_shared_glapi and egl_native_platform != ''
164elif _egl == 'yes'
165 if not with_dri
166 error('EGL requires dri')
167 elif not with_shared_glapi
168 error('EGL requires shared-glapi')
169 elif egl_native_platform == ''
170 error('No platforms specified, consider -Dplatforms=drm,x11 at least')
171 endif
172 with_egl = true
173else
174 with_egl = false
175endif
176
177# TODO: or virgl
178if with_egl and with_gallium_radeonsi and not (with_platform_drm or with_platform_surfaceless)
179 error('RadeonSI requires drm or surfaceless platform when using EGL')
180endif
181
Dylan Baker8e611872017-10-11 12:49:31 -0700182pre_args += '-DGLX_USE_TLS'
Dylan Bakera47c5252017-09-22 12:55:00 -0700183with_glx = get_option('glx')
184if with_glx != 'disabled'
Dylan Baker8d3b1212017-10-18 15:47:11 -0700185 if not (with_platform_x11 and with_any_opengl)
186 if with_glx == 'auto'
187 with_glx = 'disabled'
188 else
189 error('Cannot build GLX support without X11 platform support and at least one OpenGL API')
190 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700191 elif with_glx == 'gallium-xlib'
192 if not with_gallium
193 error('Gallium-xlib based GLX requires at least one gallium driver')
194 elif with_dri
195 error('gallium-xlib conflicts with any dri driver')
196 endif
197 elif with_glx == 'dri' and not with_dri
198 error('dri based GLX requires at least one DRI driver')
199 elif with_glx == 'auto'
200 if with_dri
201 with_glx = 'dri'
202 elif with_gallium
203 with_glx = 'gallium-xlib'
204 elif with_platform_x11 and with_any_opengl
205 with_glx = 'xlib'
206 else
207 with_glx = 'disabled'
208 endif
209 endif
210endif
211
212with_glvnd = get_option('glvnd')
213if with_glvnd and with_glx != 'dri'
214 message('glvnd requires dri based glx')
215endif
216
217# TODO: toggle for this
218with_glx_direct = true
219
Dylan Bakerd1992252017-09-14 17:57:17 -0700220if with_vulkan_icd_dir == ''
221 with_vulkan_icd_dir = join_paths(get_option('datadir'), 'vulkan/icd.d')
222endif
223
224with_intel_vk = false
225with_amd_vk = false
Dylan Bakera47c5252017-09-22 12:55:00 -0700226with_any_vk = false
Dylan Bakerd1992252017-09-14 17:57:17 -0700227_vulkan_drivers = get_option('vulkan-drivers')
228if _vulkan_drivers != ''
229 _split = _vulkan_drivers.split(',')
230 with_intel_vk = _split.contains('intel')
231 with_amd_vk = _split.contains('amd')
Dylan Bakera47c5252017-09-22 12:55:00 -0700232 with_any_vk = with_amd_vk or with_intel_vk
Dylan Bakerd1992252017-09-14 17:57:17 -0700233 if not (with_platform_x11 or with_platform_wayland)
234 error('Vulkan requires at least one platform (x11, wayland)')
235 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700236endif
237
Dylan Baker50c28df2017-09-29 17:53:01 -0700238with_dri2 = (with_dri or with_any_vk) and with_dri_platform == 'drm'
239with_dri3 = get_option('dri3')
240if with_dri3 == 'auto'
241 if host_machine.system() == 'linux' and with_dri2
242 with_dri3 = true
243 else
244 with_dri3 = false
245 endif
246elif with_dri3 == 'yes'
247 with_dri3 = true
248else
249 with_dri3 = false
250endif
251
252if with_any_vk and (with_platform_x11 and not with_dri3)
253 error('Vulkan drivers require dri3 for X11 support')
254endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700255if with_dri or with_gallium
Dylan Baker108d2572017-10-18 12:20:43 -0700256 if with_glx == 'disabled' and not with_egl
Dylan Bakera47c5252017-09-22 12:55:00 -0700257 error('building dri or gallium drivers require at least one window system')
258 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700259endif
260
Dylan Baker50c28df2017-09-29 17:53:01 -0700261with_gallium_xvmc = false
262with_gallium_vdpau = false
263with_gallium_omx = false # this is bellagio
264with_gallium_va = false
265with_gallium_media = false
266dep_va = []
267_drivers = get_option('gallium-media')
268if _drivers != ''
269 _split = _drivers.split(',')
270 with_gallium_xvmc = _split.contains('xvmc')
271 with_gallium_vdpau = _split.contains('vdpau')
272 with_gallium_omx = _split.contains('omx')
273 with_gallium_va = _split.contains('va')
274 with_gallium_media = (with_gallium_xvmc or with_gallium_vdpau or
275 with_gallium_omx or with_gallium_va)
276endif
277
Dylan Baker108d2572017-10-18 12:20:43 -0700278gl_pkgconfig_c_flags = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700279if with_platform_x11
280 if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
281 pre_args += '-DHAVE_X11_PLATFORM'
282 endif
283 if with_glx == 'xlib'
284 # TODO
285 error('TODO')
286 elif with_glx == 'gallium-xlib'
287 # TODO
288 error('TODO')
289 else
290 pre_args += '-DGLX_INDIRECT_RENDERING'
291 if with_glx_direct
292 pre_args += '-DGLX_DIRECT_RENDERING'
293 endif
294 if with_dri_platform == 'drm'
295 pre_args += '-DGLX_USE_DRM'
296 endif
297 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700298else
299 pre_args += '-DMESA_EGL_NO_X11_HEADERS'
300 gl_pkgconfig_c_flags += '-DMESA_EGL_NO_X11_HEADERS'
301endif
302if with_platform_drm
303 if with_egl and not with_gbm
304 error('EGL drm platform requires gbm')
305 endif
306 pre_args += '-DHAVE_DRM_PLATFORM'
307endif
308if with_platform_surfaceless
309 pre_args += '-DHAVE_SURFACELESS_PLATFORM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700310endif
311
Dylan Bakerd1992252017-09-14 17:57:17 -0700312prog_python2 = find_program('python2')
Dylan Baker9342a7d2017-09-28 10:48:30 -0700313has_mako = run_command(prog_python2, '-c', 'import mako')
314if has_mako.returncode() != 0
315 error('Python (2.x) mako module required to build mesa.')
316endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700317
318cc = meson.get_compiler('c')
319if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6')
Eric Engestrom1262e822017-09-29 15:25:18 +0100320 error('When using GCC, version 4.4.6 or later is required.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700321endif
322
Dylan Bakerd1992252017-09-14 17:57:17 -0700323# Define DEBUG for debug and debugoptimized builds
324if get_option('buildtype').startswith('debug')
325 pre_args += '-DDEBUG'
326endif
327
Dylan Baker673dda82017-09-20 11:53:29 -0700328if get_option('shader-cache')
329 pre_args += '-DENABLE_SHADER_CACHE'
330elif with_amd_vk
331 error('Radv requires shader cache support')
332endif
333
Dylan Bakerd1992252017-09-14 17:57:17 -0700334# Check for GCC style builtins
335foreach b : ['bswap32', 'bswap64', 'clz', 'clzll', 'ctz', 'expect', 'ffs',
336 'ffsll', 'popcount', 'popcountll', 'unreachable']
337 if cc.has_function(b)
338 pre_args += '-DHAVE___BUILTIN_@0@'.format(b.to_upper())
339 endif
340endforeach
341
Dylan Baker673dda82017-09-20 11:53:29 -0700342# check for GCC __attribute__
Dylan Bakerd1992252017-09-14 17:57:17 -0700343foreach a : ['const', 'flatten', 'malloc', 'pure', 'unused',
344 'warn_unused_result', 'weak',]
345 if cc.compiles('int foo(void) __attribute__((@0@));'.format(a),
346 name : '__attribute__((@0@))'.format(a))
347 pre_args += '-DHAVE_FUNC_ATTRIBUTE_@0@'.format(a.to_upper())
348 endif
349endforeach
350if cc.compiles('int foo(const char *p, ...) __attribute__((format(printf, 1, 2)));',
351 name : '__attribute__((format(...)))')
352 pre_args += '-DHAVE_FUNC_ATTRIBUTE_FORMAT'
353endif
354if cc.compiles('struct __attribute__((packed)) foo { int bar; };',
355 name : '__attribute__((packed))')
356 pre_args += '-DHAVE_FUNC_ATTRIBUTE_PACKED'
357endif
358if cc.compiles('int *foo(void) __attribute__((returns_nonnull));',
359 name : '__attribute__((returns_nonnull))')
360 pre_args += '-DHAVE_FUNC_ATTRIBUTE_NONNULL'
361endif
362if cc.compiles('''int foo_def(void) __attribute__((visibility("default")));
363 int foo_hid(void) __attribute__((visibility("hidden")));
364 int foo_int(void) __attribute__((visibility("internal")));
365 int foo_pro(void) __attribute__((visibility("protected")));''',
366 name : '__attribute__((visibility(...)))')
367 pre_args += '-DHAVE_FUNC_ATTRIBUTE_VISBILITY'
368endif
369if cc.compiles('int foo(void) { return 0; } int bar(void) __attribute__((alias("foo")));',
370 name : '__attribute__((alias(...)))')
371 pre_args += '-DHAVE_FUNC_ATTRIBUTE_ALIAS'
372endif
373
374# TODO: this is very incomplete
375if host_machine.system() == 'linux'
376 pre_args += '-D_GNU_SOURCE'
377endif
378
379# Check for generic C arguments
380c_args = []
381foreach a : ['-Wall', '-Werror=implicit-function-declaration',
382 '-Werror=missing-prototypes', '-fno-math-errno',
383 '-fno-trapping-math', '-Qunused-arguments']
384 if cc.has_argument(a)
385 c_args += a
386 endif
387endforeach
388c_vis_args = []
389if cc.has_argument('-fvisibility=hidden')
390 c_vis_args += '-fvisibility=hidden'
391endif
392
393# Check for generic C++ arguments
394cpp = meson.get_compiler('cpp')
395cpp_args = []
396foreach a : ['-Wall', '-fno-math-errno', '-fno-trapping-math',
397 '-Qunused-arguments', '-Wno-non-virtual-dtor']
398 if cpp.has_argument(a)
399 cpp_args += a
400 endif
401endforeach
402cpp_vis_args = []
403if cpp.has_argument('-fvisibility=hidden')
404 cpp_vis_args += '-fvisibility=hidden'
405endif
406
407# Check for C and C++ arguments for MSVC2013 compatibility. These are only used
408# in parts of the mesa code base that need to compile with old versions of
409# MSVC, mainly common code
410c_msvc_compat_args = []
411cpp_msvc_compat_args = []
412foreach a : ['-Werror=pointer-arith', '-Werror=vla']
413 if cc.has_argument(a)
414 c_msvc_compat_args += a
415 endif
416 if cpp.has_argument(a)
417 cpp_msvc_compat_args += a
418 endif
419endforeach
420
421no_override_init_args = []
422foreach a : ['-Wno-override-init', '-Wno-initializer-overrides']
423 if cc.has_argument(a)
424 no_override_init_args += a
425 endif
426endforeach
427
428# TODO: SSE41 (which is only required for core mesa)
429
430# Check for GCC style atomics
431if cc.compiles('int main() { int n; return __atomic_load_n(&n, __ATOMIC_ACQUIRE); }',
432 name : 'GCC atomic builtins')
433 pre_args += '-DUSE_GCC_ATOMIC_BUILTINS'
434endif
435if not cc.links('''#include <stdint.h>
436 uint64_t v;
437 int main() {
438 return __sync_add_and_fetch(&v, (uint64_t)1);
439 }''',
440 name : 'GCC 64bit atomics')
441 pre_args += '-DMISSING_64_BIT_ATOMICS'
442endif
443
444# TODO: endian
445# TODO: powr8
446# TODO: shared/static? Is this even worth doing?
447
448# I don't think that I need to set any of the debug stuff, I think meson
449# handles that for us
450
451# TODO: ldflags
452
453# TODO: texture-float (gallium/mesa only)
454
455# TODO: cross-compiling. I don't think this is relavent to meson
456
Dylan Baker32180562017-09-20 20:11:32 -0700457# FIXME: enable asm when cross compiler
458# This is doable (autotools does it), but it's not of immediate concern
459if meson.is_cross_build()
460 message('Cross compiling, disabling asm')
461 with_asm = false
462endif
463
464with_asm_arch = ''
465if with_asm
466 # TODO: SPARC and PPC
467 if host_machine.cpu_family() == 'x86'
468 if ['linux', 'bsd'].contains(host_machine.system()) # FIXME: hurd?
469 with_asm_arch = 'x86'
470 pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM',
471 '-DUSE_SSE_ASM']
472 endif
473 elif host_machine.cpu_family() == 'x86_64'
474 if host_machine.system() == 'linux'
475 with_asm_arch = 'x86_64'
476 pre_args += ['-DUSE_X86_64_ASM']
477 endif
478 elif host_machine.cpu_family() == 'arm'
479 if host_machine.system() == 'linux'
480 with_asm_arch = 'arm'
481 pre_args += ['-DUSE_ARM_ASM']
482 endif
483 elif host_machine.cpu_family() == 'aarch64'
484 if host_machine.system() == 'linux'
485 with_asm_arch = 'aarch64'
486 pre_args += ['-DUSE_AARCH64_ASM']
487 endif
488 endif
489endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700490
491# Check for standard headers and functions
492if cc.has_header_symbol('sys/sysmacros.h', 'major')
493 pre_args += '-DMAJOR_IN_SYSMACROS'
494elif cc.has_header_symbol('sys/mkdev.h', 'major')
495 pre_args += '-DMAJOR_IN_MKDEV'
496endif
497
498foreach h : ['xlocale.h', 'sys/sysctl.h']
499 if cc.has_header(h)
500 pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify())
501 endif
502endforeach
503
504foreach f : ['strtof', 'mkostemp', 'posix_memalign']
505 if cc.has_function(f)
506 pre_args += '-DHAVE_@0@'.format(f.to_upper())
507 endif
508endforeach
509
510# strtod locale support
511if cc.links('''
512 #define _GNU_SOURCE
513 #include <stdlib.h>
514 #include <locale.h>
515 #ifdef HAVE_XLOCALE_H
516 #include <xlocale.h>
517 #endif
518 int main() {
519 locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
520 const char *s = "1.0";
521 char *end;
522 double d = strtod_l(s, end, loc);
523 float f = strtod_l(s, end, loc);
524 freelocale(loc);
525 return 0;
526 }''',
527 extra_args : pre_args,
528 name : 'strtod has locale support')
529 pre_args += '-DHAVE_STRTOD_L'
530endif
531
532# Check for some linker flags
533ld_args_bsymbolic = []
Dylan Bakere21e0a62017-09-30 13:15:52 -0700534if cc.links('int main() { return 0; }', args : '-Wl,-Bsymbolic', name : 'Bsymbolic')
Dylan Bakerd1992252017-09-14 17:57:17 -0700535 ld_args_bsymbolic += '-Wl,-Bsymbolic'
536endif
537ld_args_gc_sections = []
538if cc.links('static char unused() { return 5; } int main() { return 0; }',
Dylan Bakere21e0a62017-09-30 13:15:52 -0700539 args : '-Wl,--gc-sections', name : 'gc-sections')
Dylan Bakerd1992252017-09-14 17:57:17 -0700540 ld_args_gc_sections += '-Wl,--gc-sections'
541endif
Dylan Bakere21e0a62017-09-30 13:15:52 -0700542with_ld_version_script = false
543if cc.links('int main() { return 0; }',
544 args : '-Wl,--version-script=@0@'.format(
545 join_paths(meson.source_root(), 'build-support/conftest.map')),
546 name : 'version-script')
547 with_ld_version_script = true
548endif
549with_ld_dynamic_list = false
550if cc.links('int main() { return 0; }',
551 args : '-Wl,--dynamic-list=@0@'.format(
552 join_paths(meson.source_root(), 'build-support/conftest.dyn')),
553 name : 'dynamic-list')
554 with_ld_dynamic_list = true
555endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700556
557# check for dl support
558if cc.has_function('dlopen')
559 dep_dl = []
560else
561 dep_dl = cc.find_library('dl')
562endif
Dylan Baker32180562017-09-20 20:11:32 -0700563if cc.has_function('dladdr', dependencies : dep_dl)
564 # This is really only required for megadrivers
565 pre_args += '-DHAVE_DLADDR'
Dylan Bakerd1992252017-09-14 17:57:17 -0700566endif
567
568if cc.has_function('dl_iterate_phdr')
569 pre_args += '-DHAVE_DL_ITERATE_PHDR'
570else
571 # TODO: this is required for vulkan
572endif
573
574# Determine whether or not the rt library is needed for time functions
575if cc.has_function('clock_gettime')
576 dep_clock = []
577else
578 dep_clock = cc.find_library('rt')
579endif
580
Dylan Baker66c94b92017-09-30 13:48:34 -0700581with_gallium_drisw_kms = false
Dylan Baker50c28df2017-09-29 17:53:01 -0700582dep_libdrm = dependency('libdrm', version : '>= 2.4.75',
583 required : with_dri2 or with_dri3)
584if dep_libdrm.found()
585 pre_args += '-DHAVE_LIBDRM'
Dylan Baker66c94b92017-09-30 13:48:34 -0700586 if with_dri_platform == 'drm' and with_dri
587 with_gallium_drisw_kms = true
588 endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700589endif
590
Dylan Bakerd1992252017-09-14 17:57:17 -0700591# TODO: some of these may be conditional
592dep_zlib = dependency('zlib', version : '>= 1.2.3')
593dep_thread = dependency('threads')
Dylan Baker50c28df2017-09-29 17:53:01 -0700594if dep_thread.found() and host_machine.system() == 'linux'
595 pre_args += '-DHAVE_PTHREAD'
596endif
Dylan Bakercc4f5872017-09-27 11:30:21 -0700597dep_elf = dependency('libelf', required : false)
Dylan Bakerb154b442017-09-30 14:04:28 -0700598if not dep_elf.found() and (with_amd_vk or with_gallium_radeonsi) # TODO: clover, r600
599 dep_elf = cc.find_library('elf')
Dylan Bakercc4f5872017-09-27 11:30:21 -0700600endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700601dep_expat = dependency('expat')
602# this only exists on linux so either this is linux and it will be found, or
603# its not linux and and wont
604dep_m = cc.find_library('m', required : false)
Dylan Baker66f97f62017-09-30 09:03:51 -0700605
606dep_libdrm_amdgpu = []
607dep_libdrm_radeon = []
Dylan Baker813b4b02017-10-09 14:59:35 -0700608dep_libdrm_nouveau = []
Dylan Baker66f97f62017-09-30 09:03:51 -0700609if with_amd_vk or with_gallium_radeonsi
Dylan Baker8792a9e2017-10-20 16:28:32 -0700610 dep_libdrm_amdgpu = dependency('libdrm_amdgpu', version : '>= 2.4.85')
Dylan Baker66f97f62017-09-30 09:03:51 -0700611endif
612if with_gallium_radeonsi # older radeon too
613 dep_libdrm_radeon = dependency('libdrm_radeon', version : '>= 2.4.71')
614endif
Dylan Baker813b4b02017-10-09 14:59:35 -0700615if with_gallium_nouveau
616 dep_libdrm_nouveau = dependency('libdrm_nouveau', version : '>= 2.4.66')
617endif
Dylan Baker673dda82017-09-20 11:53:29 -0700618
619llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit']
620if with_amd_vk
621 llvm_modules += ['amdgpu', 'bitreader', 'ipo']
622endif
623dep_llvm = dependency(
Dylan Baker50c28df2017-09-29 17:53:01 -0700624 'llvm', version : '>= 3.9.0', required : with_amd_vk, modules : llvm_modules,
Dylan Baker673dda82017-09-20 11:53:29 -0700625)
Dylan Baker02cf3a82017-10-12 09:47:30 -0700626if with_llvm
627 if dep_llvm.found()
628 _llvm_version = dep_llvm.version().split('.')
629 # Development versions of LLVM have an 'svn' suffix, we don't want that for
630 # our version checks.
631 _llvm_patch = _llvm_version[2]
632 if _llvm_patch.endswith('svn')
633 _llvm_patch = _llvm_patch.split('s')[0]
634 endif
635 pre_args += [
636 '-DHAVE_LLVM=0x0@0@@1@@2@'.format(_llvm_version[0], _llvm_version[1], _llvm_patch),
637 '-DMESA_LLVM_VERSION_PATCH=@0@'.format(_llvm_patch),
638 ]
639 else
Dylan Baker6a9ad202017-10-10 14:56:39 -0700640 if with_gallium_softpipe
641 error('Cannot find LLVM to build LLVMPipe. If you wanted softpipe pass -Dllvm=false to meson')
642 elif with_amd_vk or with_gallium_radeonsi # etc
Dylan Baker66f97f62017-09-30 09:03:51 -0700643 error('The following drivers requires LLVM: Radv, RadeonSI. One of these is enabled, but LLVM was not found.')
Dylan Baker02cf3a82017-10-12 09:47:30 -0700644 endif
Dylan Baker673dda82017-09-20 11:53:29 -0700645 endif
Dylan Baker66f97f62017-09-30 09:03:51 -0700646elif with_amd_vk or with_gallium_radeonsi
647 error('The following drivers requires LLVM: Radv, RadeonSI. One of these is enabled, but LLVM is disabled.')
Dylan Baker673dda82017-09-20 11:53:29 -0700648endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700649
Dylan Bakera47c5252017-09-22 12:55:00 -0700650dep_glvnd = []
651if with_glvnd
652 dep_glvnd = dependency('libglvnd', version : '>= 0.2.0')
653 pre_args += '-DUSE_LIBGLVND=1'
654endif
655
Dylan Bakerd1992252017-09-14 17:57:17 -0700656# TODO: make this conditional
657dep_valgrind = dependency('valgrind', required : false)
658if dep_valgrind.found() and with_valgrind
659 pre_args += '-DHAVE_VALGRIND'
660endif
661
662# pthread stubs. Lets not and say we didn't
663
Dylan Baker32180562017-09-20 20:11:32 -0700664prog_bison = find_program('bison', required : with_any_opengl)
665prog_flex = find_program('flex', required : with_any_opengl)
666
Dylan Bakerd1992252017-09-14 17:57:17 -0700667# TODO: selinux
Dylan Baker32180562017-09-20 20:11:32 -0700668dep_selinux = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700669
670# TODO: llvm-prefix and llvm-shared-libs
671
Dylan Bakerb1b65392017-09-28 22:25:02 -0700672dep_unwind = dependency('libunwind', required : false)
673if dep_unwind.found()
674 pre_args += '-DHAVE_LIBUNWIND'
675endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700676
677# TODO: flags for opengl, gles, dri
678
679# TODO: gallium-hud
680
681# TODO: glx provider
682
683# TODO: osmesa provider
684
Dylan Bakerd1992252017-09-14 17:57:17 -0700685# TODO: symbol mangling
686
Dylan Bakerd1992252017-09-14 17:57:17 -0700687if with_platform_wayland
688 prog_wl_scanner = find_program('wayland-scanner')
689 dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.8')
690 dep_wayland_client = dependency('wayland-client', version : '>=1.11')
691 dep_wayland_server = dependency('wayland-server', version : '>=1.11')
Dylan Baker108d2572017-10-18 12:20:43 -0700692 wayland_dmabuf_xml = join_paths(
693 dep_wl_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable',
694 'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'
695 )
696 pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED']
Dylan Bakerd1992252017-09-14 17:57:17 -0700697else
698 prog_wl_scanner = []
699 dep_wl_protocols = []
700 dep_wayland_client = []
701 dep_wayland_server = []
Dylan Baker108d2572017-10-18 12:20:43 -0700702 wayland_dmabuf_xml = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700703endif
704
Dylan Baker50c28df2017-09-29 17:53:01 -0700705dep_x11 = []
706dep_xext = []
707dep_xdamage = []
708dep_xfixes = []
709dep_x11_xcb = []
710dep_xcb_glx = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700711dep_xcb_dri2 = []
712dep_xcb_dri3 = []
Dylan Bakera47c5252017-09-22 12:55:00 -0700713dep_dri2proto = []
714dep_glproto = []
Dylan Bakera47c5252017-09-22 12:55:00 -0700715dep_xf86vm = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700716dep_xcb_dri3 = []
717dep_xcb_present = []
718dep_xcb_sync = []
Dylan Baker108d2572017-10-18 12:20:43 -0700719dep_xcb_xfixes = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700720dep_xshmfence = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700721if with_platform_x11
Dylan Baker50c28df2017-09-29 17:53:01 -0700722 if with_glx == 'dri' and with_dri_platform == 'drm'
723 dep_x11 = dependency('x11')
724 dep_xext = dependency('xext')
725 dep_xdamage = dependency('xdamage', version : '>= 1.1')
726 dep_xfixes = dependency('xfixes')
727 dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1')
Nicholas Miell30128852017-10-17 18:04:16 -0700728 dep_xf86vm = dependency('xxf86vm', required : false)
Dylan Bakera47c5252017-09-22 12:55:00 -0700729 endif
730 if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
Dylan Baker50c28df2017-09-29 17:53:01 -0700731 dep_xcb = dependency('xcb')
732 dep_x11_xcb = dependency('x11-xcb')
733 dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8')
734
Dylan Bakera47c5252017-09-22 12:55:00 -0700735 if with_dri3
736 pre_args += '-DHAVE_DRI3'
Dylan Baker50c28df2017-09-29 17:53:01 -0700737 dep_xcb_dri3 = dependency('xcb-dri3')
738 dep_xcb_present = dependency('xcb-present')
739 dep_xcb_sync = dependency('xcb-sync')
740 dep_xshmfence = dependency('xshmfence', version : '>= 1.1')
Dylan Bakera47c5252017-09-22 12:55:00 -0700741 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700742 endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700743 if with_glx != 'disabled'
744 dep_dri2proto = dependency('dri2proto', version : '>= 2.8')
745 dep_glproto = dependency('glproto', version : '>= 1.4.14')
746 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700747 if with_egl
748 dep_xcb_xfixes = dependency('xcb-xfixes')
749 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700750endif
751
Dylan Bakerd1992252017-09-14 17:57:17 -0700752# TODO: osmesa
753
Dylan Bakerd1992252017-09-14 17:57:17 -0700754# TODO: vallium G3DVL
755
756# TODO: nine
757
758# TODO: clover
759
Dylan Bakerd1992252017-09-14 17:57:17 -0700760# TODO: gallium tests
761
762# TODO: various libdirs
763
764# TODO: swr
765
766# TODO: gallium driver dirs
767
768# FIXME: this is a workaround for #2326
769prog_touch = find_program('touch')
770dummy_cpp = custom_target(
771 'dummy_cpp',
772 output : 'dummy.cpp',
773 command : [prog_touch, '@OUTPUT@'],
774)
775
776foreach a : pre_args
777 add_project_arguments(a, language : ['c', 'cpp'])
778endforeach
779foreach a : c_args
780 add_project_arguments(a, language : ['c'])
781endforeach
782foreach a : cpp_args
783 add_project_arguments(a, language : ['cpp'])
784endforeach
785
786inc_include = include_directories('include')
787
Dylan Baker108d2572017-10-18 12:20:43 -0700788gl_priv_reqs = [
789 'x11', 'xext', 'xdamage >= 1.1', 'xfixes', 'x11-xcb', 'xcb',
790 'xcb-glx >= 1.8.1', 'libdrm >= 2.4.75',
791]
792if dep_xf86vm != [] and dep_xf86vm.found()
793 gl_priv_reqs += 'xf86vm'
794endif
795if with_dri_platform == 'drm'
796 gl_priv_reqs += 'xcb-dri2 >= 1.8'
797endif
798
799gl_priv_libs = []
800if dep_thread.found()
801 gl_priv_libs += ['-lpthread', '-pthread']
802endif
803if dep_m.found()
804 gl_priv_libs += '-lm'
805endif
806if dep_dl.found()
807 gl_priv_libs += '-ldl'
808endif
809
Dylan Baker32180562017-09-20 20:11:32 -0700810pkg = import('pkgconfig')
811
Dylan Bakerd1992252017-09-14 17:57:17 -0700812subdir('include')
813subdir('src')