blob: 51d19c02b80c85875382580f50b825aba776bdd4 [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"',
Dylan Baker601bd722017-10-09 14:22:07 -070042 '-D_GNU_SOURCE',
Dylan Baker32180562017-09-20 20:11:32 -070043]
44
Dylan Bakere915b8d2017-09-28 14:02:51 -070045with_vulkan_icd_dir = get_option('vulkan-icd-dir')
Dylan Bakerd1992252017-09-14 17:57:17 -070046with_tests = get_option('build-tests')
47with_valgrind = get_option('valgrind')
Erik Faye-Lund9e5a5a12017-10-23 20:54:03 +020048with_libunwind = get_option('libunwind')
Dylan Baker32180562017-09-20 20:11:32 -070049with_asm = get_option('asm')
Dylan Baker02cf3a82017-10-12 09:47:30 -070050with_llvm = get_option('llvm')
Dylan Bakercbbd5bb2017-10-20 21:48:18 -070051with_osmesa = get_option('osmesa')
Dylan Baker3b209e92017-10-10 15:25:07 -070052if get_option('texture-float')
53 pre_args += '-DTEXTURE_FLOAT_ENABLED'
54 message('WARNING: Floating-point texture enabled. Please consult docs/patents.txt and your lawyer before building mesa.')
55endif
Dylan Baker32180562017-09-20 20:11:32 -070056
57# XXX: yeah, do these
58with_appledri = false
59with_windowsdri = false
60
Dylan Bakerdb978842017-09-28 13:59:04 -070061dri_drivers_path = get_option('dri-drivers-path')
62if dri_drivers_path == ''
63 dri_drivers_path = join_paths(get_option('libdir'), 'dri')
64endif
65
Dylan Baker32180562017-09-20 20:11:32 -070066with_gles1 = get_option('gles1')
67with_gles2 = get_option('gles2')
68with_opengl = get_option('opengl')
69with_any_opengl = with_opengl or with_gles1 or with_gles2
Dylan Bakera47c5252017-09-22 12:55:00 -070070# Only build shared_glapi if at least one OpenGL API is enabled
71with_shared_glapi = get_option('shared-glapi') and with_any_opengl
Dylan Baker32180562017-09-20 20:11:32 -070072
Dylan Baker32180562017-09-20 20:11:32 -070073
74# shared-glapi is required if at least two OpenGL APIs are being built
75if not with_shared_glapi
76 if ((with_gles1 and with_gles2) or (with_gles1 and with_opengl)
77 or (with_gles2 and with_opengl))
78 error('shared-glapi required for building two or more of OpenGL, OpenGL ES 1.x, OpenGL ES 2.x')
79 endif
80endif
81
82# We require OpenGL for OpenGL ES
83if (with_gles1 or with_gles2) and not with_opengl
84 error('building OpenGL ES without OpenGL is not supported.')
85endif
86
87with_dri = false
Ville Syrjälä22899642017-10-10 01:15:42 +030088with_dri_i915 = false
Dylan Baker32180562017-09-20 20:11:32 -070089with_dri_i965 = false
Dylan Baker191e7852017-10-16 17:12:52 -070090with_dri_r100 = false
Dylan Bakereecd2862017-10-16 17:24:56 -070091with_dri_r200 = false
Dylan Bakereb3bb032017-10-16 17:51:47 -070092with_dri_nouveau = false
Dylan Bakerc2cd5802017-10-03 17:06:22 -070093with_dri_swrast = false
Dylan Baker32180562017-09-20 20:11:32 -070094_drivers = get_option('dri-drivers')
95if _drivers != ''
96 _split = _drivers.split(',')
Ville Syrjälä22899642017-10-10 01:15:42 +030097 with_dri_i915 = _split.contains('i915')
Dylan Baker32180562017-09-20 20:11:32 -070098 with_dri_i965 = _split.contains('i965')
Dylan Baker191e7852017-10-16 17:12:52 -070099 with_dri_r100 = _split.contains('r100')
Dylan Bakereecd2862017-10-16 17:24:56 -0700100 with_dri_r200 = _split.contains('r200')
Dylan Bakereb3bb032017-10-16 17:51:47 -0700101 with_dri_nouveau = _split.contains('nouveau')
Dylan Bakerc2cd5802017-10-03 17:06:22 -0700102 with_dri_swrast = _split.contains('swrast')
Dylan Baker32180562017-09-20 20:11:32 -0700103 with_dri = true
104endif
105
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700106with_gallium = false
Eric Anholt1918c9b2017-10-12 18:39:08 -0700107with_gallium_pl111 = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700108with_gallium_radeonsi = false
Dylan Baker813b4b02017-10-09 14:59:35 -0700109with_gallium_nouveau = false
Rob Clark4aa69cc2017-10-14 10:08:50 -0400110with_gallium_freedreno = false
Dylan Bakerf3d03a22017-10-10 11:57:50 -0700111with_gallium_softpipe = false
Eric Anholt1ae80182017-10-12 13:53:12 -0700112with_gallium_vc4 = false
Eric Anholt4f3e3802017-10-12 18:40:16 -0700113with_gallium_vc5 = false
Dylan Baker51558a12017-10-20 15:45:22 -0700114with_gallium_etnaviv = false
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700115with_gallium_imx = false
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700116_drivers = get_option('gallium-drivers')
117if _drivers != ''
118 _split = _drivers.split(',')
Dylan Bakerfbf39fd2017-10-17 14:44:15 -0700119 with_gallium_pl111 = _split.contains('pl111')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700120 with_gallium_radeonsi = _split.contains('radeonsi')
Dylan Baker813b4b02017-10-09 14:59:35 -0700121 with_gallium_nouveau = _split.contains('nouveau')
Rob Clark4aa69cc2017-10-14 10:08:50 -0400122 with_gallium_freedreno = _split.contains('freedreno')
Dylan Bakerde24d612017-10-10 14:27:19 -0700123 with_gallium_softpipe = _split.contains('swrast')
Eric Anholt1ae80182017-10-12 13:53:12 -0700124 with_gallium_vc4 = _split.contains('vc4')
Eric Anholt4f3e3802017-10-12 18:40:16 -0700125 with_gallium_vc5 = _split.contains('vc5')
Dylan Baker51558a12017-10-20 15:45:22 -0700126 with_gallium_etnaviv = _split.contains('etnaviv')
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700127 with_gallium_imx = _split.contains('imx')
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700128 with_gallium = true
129 with_dri = true
Ville Syrjälä22899642017-10-10 01:15:42 +0300130endif
131
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700132if not (with_dri or with_gallium)
Dylan Baker32180562017-09-20 20:11:32 -0700133 with_gles1 = false
134 with_gles2 = false
135 with_opengl = false
136 with_any_opengl = false
137 with_shared_glapi = false
138endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700139
Dylan Bakerde24d612017-10-10 14:27:19 -0700140if with_dri_swrast and with_gallium_softpipe
141 error('Only one swrast provider can be built')
142endif
Dylan Bakerd4567ef2017-10-20 15:57:15 -0700143if with_gallium_imx and not with_gallium_etnaviv
144 error('IMX driver requires etnaviv driver')
145endif
Dylan Bakerde24d612017-10-10 14:27:19 -0700146
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700147dep_libdrm_intel = []
148if with_dri_i915
149 dep_libdrm_intel = dependency('libdrm_intel', version : '>= 2.4.75')
150endif
151
Dylan Bakera47c5252017-09-22 12:55:00 -0700152# TODO: other OSes
153with_dri_platform = 'drm'
154
Eric Engestromc5ec1552017-10-24 16:08:15 +0100155with_platform_android = false
Dylan Bakerd1992252017-09-14 17:57:17 -0700156with_platform_wayland = false
157with_platform_x11 = false
Dylan Bakerb1b65392017-09-28 22:25:02 -0700158with_platform_drm = false
Dylan Baker108d2572017-10-18 12:20:43 -0700159with_platform_surfaceless = false
160egl_native_platform = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700161_platforms = get_option('platforms')
162if _platforms != ''
163 _split = _platforms.split(',')
Eric Engestromc5ec1552017-10-24 16:08:15 +0100164 with_platform_android = _split.contains('android')
Dylan Bakerd1992252017-09-14 17:57:17 -0700165 with_platform_x11 = _split.contains('x11')
166 with_platform_wayland = _split.contains('wayland')
Dylan Bakerb1b65392017-09-28 22:25:02 -0700167 with_platform_drm = _split.contains('drm')
Dylan Baker108d2572017-10-18 12:20:43 -0700168 with_platform_surfaceless = _split.contains('surfaceless')
169 egl_native_platform = _split[0]
Dylan Bakerd1992252017-09-14 17:57:17 -0700170endif
171
Dylan Baker816bf7d12017-09-28 15:53:53 -0700172with_gbm = get_option('gbm')
173if with_gbm == 'auto' and with_dri # TODO: or gallium
174 with_gbm = host_machine.system() == 'linux'
Dylan Baker05893312017-10-30 10:27:48 -0700175elif with_gbm == 'true'
Dylan Baker816bf7d12017-09-28 15:53:53 -0700176 if not ['linux', 'bsd'].contains(host_machine.system())
177 error('GBM only supports unix-like platforms')
178 endif
179 with_gbm = true
180else
181 with_gbm = false
182endif
183
Dylan Baker108d2572017-10-18 12:20:43 -0700184_egl = get_option('egl')
185if _egl == 'auto'
186 with_egl = with_dri and with_shared_glapi and egl_native_platform != ''
Dylan Baker05893312017-10-30 10:27:48 -0700187elif _egl == 'true'
Dylan Baker108d2572017-10-18 12:20:43 -0700188 if not with_dri
189 error('EGL requires dri')
190 elif not with_shared_glapi
191 error('EGL requires shared-glapi')
192 elif egl_native_platform == ''
193 error('No platforms specified, consider -Dplatforms=drm,x11 at least')
194 endif
195 with_egl = true
196else
197 with_egl = false
198endif
199
200# TODO: or virgl
201if with_egl and with_gallium_radeonsi and not (with_platform_drm or with_platform_surfaceless)
202 error('RadeonSI requires drm or surfaceless platform when using EGL')
203endif
204
Dylan Baker8e611872017-10-11 12:49:31 -0700205pre_args += '-DGLX_USE_TLS'
Dylan Bakera47c5252017-09-22 12:55:00 -0700206with_glx = get_option('glx')
207if with_glx != 'disabled'
Dylan Baker8d3b1212017-10-18 15:47:11 -0700208 if not (with_platform_x11 and with_any_opengl)
209 if with_glx == 'auto'
210 with_glx = 'disabled'
211 else
212 error('Cannot build GLX support without X11 platform support and at least one OpenGL API')
213 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700214 elif with_glx == 'gallium-xlib'
215 if not with_gallium
216 error('Gallium-xlib based GLX requires at least one gallium driver')
217 elif with_dri
218 error('gallium-xlib conflicts with any dri driver')
219 endif
220 elif with_glx == 'dri' and not with_dri
221 error('dri based GLX requires at least one DRI driver')
222 elif with_glx == 'auto'
223 if with_dri
224 with_glx = 'dri'
225 elif with_gallium
226 with_glx = 'gallium-xlib'
227 elif with_platform_x11 and with_any_opengl
228 with_glx = 'xlib'
229 else
230 with_glx = 'disabled'
231 endif
232 endif
233endif
234
235with_glvnd = get_option('glvnd')
Dylan Baker8a36f022017-11-01 10:24:10 -0700236if with_glvnd
237 if with_glx == 'xlib' or with_glx == 'gallium-xlib'
238 error('Cannot build glvnd support for GLX that is not DRI based.')
239 elif with_glx == 'disabled' and not with_egl
240 error('glvnd requires DRI based GLX and/or EGL')
241 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700242endif
243
244# TODO: toggle for this
245with_glx_direct = true
246
Dylan Bakerd1992252017-09-14 17:57:17 -0700247if with_vulkan_icd_dir == ''
248 with_vulkan_icd_dir = join_paths(get_option('datadir'), 'vulkan/icd.d')
249endif
250
251with_intel_vk = false
252with_amd_vk = false
Dylan Bakera47c5252017-09-22 12:55:00 -0700253with_any_vk = false
Dylan Bakerd1992252017-09-14 17:57:17 -0700254_vulkan_drivers = get_option('vulkan-drivers')
255if _vulkan_drivers != ''
256 _split = _vulkan_drivers.split(',')
257 with_intel_vk = _split.contains('intel')
258 with_amd_vk = _split.contains('amd')
Dylan Bakera47c5252017-09-22 12:55:00 -0700259 with_any_vk = with_amd_vk or with_intel_vk
Eric Engestromc5ec1552017-10-24 16:08:15 +0100260 if not (with_platform_x11 or with_platform_wayland or with_platform_android)
261 error('Vulkan requires at least one platform (x11, wayland, android)')
Dylan Bakerd1992252017-09-14 17:57:17 -0700262 endif
Dylan Bakera47c5252017-09-22 12:55:00 -0700263endif
264
Dylan Baker50c28df2017-09-29 17:53:01 -0700265with_dri2 = (with_dri or with_any_vk) and with_dri_platform == 'drm'
266with_dri3 = get_option('dri3')
267if with_dri3 == 'auto'
268 if host_machine.system() == 'linux' and with_dri2
269 with_dri3 = true
270 else
271 with_dri3 = false
272 endif
Dylan Baker05893312017-10-30 10:27:48 -0700273elif with_dri3 == 'true'
Dylan Baker50c28df2017-09-29 17:53:01 -0700274 with_dri3 = true
275else
276 with_dri3 = false
277endif
278
279if with_any_vk and (with_platform_x11 and not with_dri3)
280 error('Vulkan drivers require dri3 for X11 support')
281endif
Dylan Bakeraf9d2762017-09-28 21:03:07 -0700282if with_dri or with_gallium
Dylan Baker108d2572017-10-18 12:20:43 -0700283 if with_glx == 'disabled' and not with_egl
Dylan Bakera47c5252017-09-22 12:55:00 -0700284 error('building dri or gallium drivers require at least one window system')
285 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700286endif
287
Dylan Baker50c28df2017-09-29 17:53:01 -0700288with_gallium_xvmc = false
289with_gallium_vdpau = false
290with_gallium_omx = false # this is bellagio
291with_gallium_va = false
292with_gallium_media = false
293dep_va = []
294_drivers = get_option('gallium-media')
295if _drivers != ''
296 _split = _drivers.split(',')
297 with_gallium_xvmc = _split.contains('xvmc')
298 with_gallium_vdpau = _split.contains('vdpau')
299 with_gallium_omx = _split.contains('omx')
300 with_gallium_va = _split.contains('va')
301 with_gallium_media = (with_gallium_xvmc or with_gallium_vdpau or
302 with_gallium_omx or with_gallium_va)
303endif
304
Dylan Baker108d2572017-10-18 12:20:43 -0700305gl_pkgconfig_c_flags = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700306if with_platform_x11
307 if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
308 pre_args += '-DHAVE_X11_PLATFORM'
309 endif
310 if with_glx == 'xlib'
311 # TODO
312 error('TODO')
313 elif with_glx == 'gallium-xlib'
314 # TODO
315 error('TODO')
316 else
317 pre_args += '-DGLX_INDIRECT_RENDERING'
318 if with_glx_direct
319 pre_args += '-DGLX_DIRECT_RENDERING'
320 endif
321 if with_dri_platform == 'drm'
322 pre_args += '-DGLX_USE_DRM'
323 endif
324 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700325else
326 pre_args += '-DMESA_EGL_NO_X11_HEADERS'
327 gl_pkgconfig_c_flags += '-DMESA_EGL_NO_X11_HEADERS'
328endif
329if with_platform_drm
330 if with_egl and not with_gbm
331 error('EGL drm platform requires gbm')
332 endif
333 pre_args += '-DHAVE_DRM_PLATFORM'
334endif
335if with_platform_surfaceless
336 pre_args += '-DHAVE_SURFACELESS_PLATFORM'
Dylan Baker50c28df2017-09-29 17:53:01 -0700337endif
Eric Engestromc5ec1552017-10-24 16:08:15 +0100338if with_platform_android
339 dep_android = [
340 dependency('cutils'),
341 dependency('hardware'),
342 dependency('sync'),
343 ]
344 pre_args += '-DHAVE_ANDROID_PLATFORM'
345endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700346
Dylan Bakerd1992252017-09-14 17:57:17 -0700347prog_python2 = find_program('python2')
Dylan Baker9342a7d2017-09-28 10:48:30 -0700348has_mako = run_command(prog_python2, '-c', 'import mako')
349if has_mako.returncode() != 0
350 error('Python (2.x) mako module required to build mesa.')
351endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700352
353cc = meson.get_compiler('c')
354if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6')
Eric Engestrom1262e822017-09-29 15:25:18 +0100355 error('When using GCC, version 4.4.6 or later is required.')
Dylan Bakerd1992252017-09-14 17:57:17 -0700356endif
357
Eric Engestrom1e6f9ea2017-11-06 17:18:06 +0000358# Define DEBUG for debug builds only (debugoptimized is not included on this one)
359if get_option('buildtype') == 'debug'
Dylan Bakerd1992252017-09-14 17:57:17 -0700360 pre_args += '-DDEBUG'
361endif
362
Dylan Baker673dda82017-09-20 11:53:29 -0700363if get_option('shader-cache')
364 pre_args += '-DENABLE_SHADER_CACHE'
365elif with_amd_vk
366 error('Radv requires shader cache support')
367endif
368
Dylan Bakerd1992252017-09-14 17:57:17 -0700369# Check for GCC style builtins
370foreach b : ['bswap32', 'bswap64', 'clz', 'clzll', 'ctz', 'expect', 'ffs',
371 'ffsll', 'popcount', 'popcountll', 'unreachable']
372 if cc.has_function(b)
373 pre_args += '-DHAVE___BUILTIN_@0@'.format(b.to_upper())
374 endif
375endforeach
376
Dylan Baker673dda82017-09-20 11:53:29 -0700377# check for GCC __attribute__
Dylan Bakerd1992252017-09-14 17:57:17 -0700378foreach a : ['const', 'flatten', 'malloc', 'pure', 'unused',
379 'warn_unused_result', 'weak',]
380 if cc.compiles('int foo(void) __attribute__((@0@));'.format(a),
381 name : '__attribute__((@0@))'.format(a))
382 pre_args += '-DHAVE_FUNC_ATTRIBUTE_@0@'.format(a.to_upper())
383 endif
384endforeach
385if cc.compiles('int foo(const char *p, ...) __attribute__((format(printf, 1, 2)));',
386 name : '__attribute__((format(...)))')
387 pre_args += '-DHAVE_FUNC_ATTRIBUTE_FORMAT'
388endif
389if cc.compiles('struct __attribute__((packed)) foo { int bar; };',
390 name : '__attribute__((packed))')
391 pre_args += '-DHAVE_FUNC_ATTRIBUTE_PACKED'
392endif
393if cc.compiles('int *foo(void) __attribute__((returns_nonnull));',
394 name : '__attribute__((returns_nonnull))')
395 pre_args += '-DHAVE_FUNC_ATTRIBUTE_NONNULL'
396endif
397if cc.compiles('''int foo_def(void) __attribute__((visibility("default")));
398 int foo_hid(void) __attribute__((visibility("hidden")));
399 int foo_int(void) __attribute__((visibility("internal")));
400 int foo_pro(void) __attribute__((visibility("protected")));''',
401 name : '__attribute__((visibility(...)))')
402 pre_args += '-DHAVE_FUNC_ATTRIBUTE_VISBILITY'
403endif
404if cc.compiles('int foo(void) { return 0; } int bar(void) __attribute__((alias("foo")));',
405 name : '__attribute__((alias(...)))')
406 pre_args += '-DHAVE_FUNC_ATTRIBUTE_ALIAS'
407endif
408
409# TODO: this is very incomplete
410if host_machine.system() == 'linux'
411 pre_args += '-D_GNU_SOURCE'
412endif
413
414# Check for generic C arguments
415c_args = []
416foreach a : ['-Wall', '-Werror=implicit-function-declaration',
417 '-Werror=missing-prototypes', '-fno-math-errno',
418 '-fno-trapping-math', '-Qunused-arguments']
419 if cc.has_argument(a)
420 c_args += a
421 endif
422endforeach
423c_vis_args = []
424if cc.has_argument('-fvisibility=hidden')
425 c_vis_args += '-fvisibility=hidden'
426endif
427
428# Check for generic C++ arguments
429cpp = meson.get_compiler('cpp')
430cpp_args = []
431foreach a : ['-Wall', '-fno-math-errno', '-fno-trapping-math',
432 '-Qunused-arguments', '-Wno-non-virtual-dtor']
433 if cpp.has_argument(a)
434 cpp_args += a
435 endif
436endforeach
437cpp_vis_args = []
438if cpp.has_argument('-fvisibility=hidden')
439 cpp_vis_args += '-fvisibility=hidden'
440endif
441
442# Check for C and C++ arguments for MSVC2013 compatibility. These are only used
443# in parts of the mesa code base that need to compile with old versions of
444# MSVC, mainly common code
445c_msvc_compat_args = []
446cpp_msvc_compat_args = []
447foreach a : ['-Werror=pointer-arith', '-Werror=vla']
448 if cc.has_argument(a)
449 c_msvc_compat_args += a
450 endif
451 if cpp.has_argument(a)
452 cpp_msvc_compat_args += a
453 endif
454endforeach
455
456no_override_init_args = []
457foreach a : ['-Wno-override-init', '-Wno-initializer-overrides']
458 if cc.has_argument(a)
459 no_override_init_args += a
460 endif
461endforeach
462
463# TODO: SSE41 (which is only required for core mesa)
464
465# Check for GCC style atomics
466if cc.compiles('int main() { int n; return __atomic_load_n(&n, __ATOMIC_ACQUIRE); }',
467 name : 'GCC atomic builtins')
468 pre_args += '-DUSE_GCC_ATOMIC_BUILTINS'
469endif
470if not cc.links('''#include <stdint.h>
471 uint64_t v;
472 int main() {
473 return __sync_add_and_fetch(&v, (uint64_t)1);
474 }''',
475 name : 'GCC 64bit atomics')
476 pre_args += '-DMISSING_64_BIT_ATOMICS'
477endif
478
479# TODO: endian
480# TODO: powr8
481# TODO: shared/static? Is this even worth doing?
482
483# I don't think that I need to set any of the debug stuff, I think meson
484# handles that for us
485
486# TODO: ldflags
487
488# TODO: texture-float (gallium/mesa only)
489
490# TODO: cross-compiling. I don't think this is relavent to meson
491
Dylan Baker32180562017-09-20 20:11:32 -0700492# FIXME: enable asm when cross compiler
493# This is doable (autotools does it), but it's not of immediate concern
Eric Anholtebcb4c22017-11-08 14:07:38 -0800494if meson.is_cross_build() and host_machine.cpu_family().startswith('x86')
495 message('Cross compiling, disabling x86/x86_64 asm')
Dylan Baker32180562017-09-20 20:11:32 -0700496 with_asm = false
497endif
498
499with_asm_arch = ''
500if with_asm
501 # TODO: SPARC and PPC
502 if host_machine.cpu_family() == 'x86'
503 if ['linux', 'bsd'].contains(host_machine.system()) # FIXME: hurd?
504 with_asm_arch = 'x86'
505 pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM',
506 '-DUSE_SSE_ASM']
507 endif
508 elif host_machine.cpu_family() == 'x86_64'
509 if host_machine.system() == 'linux'
510 with_asm_arch = 'x86_64'
511 pre_args += ['-DUSE_X86_64_ASM']
512 endif
513 elif host_machine.cpu_family() == 'arm'
514 if host_machine.system() == 'linux'
515 with_asm_arch = 'arm'
516 pre_args += ['-DUSE_ARM_ASM']
517 endif
518 elif host_machine.cpu_family() == 'aarch64'
519 if host_machine.system() == 'linux'
520 with_asm_arch = 'aarch64'
521 pre_args += ['-DUSE_AARCH64_ASM']
522 endif
523 endif
524endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700525
526# Check for standard headers and functions
527if cc.has_header_symbol('sys/sysmacros.h', 'major')
528 pre_args += '-DMAJOR_IN_SYSMACROS'
529elif cc.has_header_symbol('sys/mkdev.h', 'major')
530 pre_args += '-DMAJOR_IN_MKDEV'
531endif
532
Timothy Arcerif98a2762017-10-16 18:06:49 +1100533foreach h : ['xlocale.h', 'sys/sysctl.h', 'linux/futex.h']
Dylan Bakerd1992252017-09-14 17:57:17 -0700534 if cc.has_header(h)
535 pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify())
536 endif
537endforeach
538
539foreach f : ['strtof', 'mkostemp', 'posix_memalign']
540 if cc.has_function(f)
541 pre_args += '-DHAVE_@0@'.format(f.to_upper())
542 endif
543endforeach
544
545# strtod locale support
546if cc.links('''
547 #define _GNU_SOURCE
548 #include <stdlib.h>
549 #include <locale.h>
550 #ifdef HAVE_XLOCALE_H
551 #include <xlocale.h>
552 #endif
553 int main() {
554 locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL);
555 const char *s = "1.0";
556 char *end;
557 double d = strtod_l(s, end, loc);
558 float f = strtod_l(s, end, loc);
559 freelocale(loc);
560 return 0;
561 }''',
562 extra_args : pre_args,
563 name : 'strtod has locale support')
564 pre_args += '-DHAVE_STRTOD_L'
565endif
566
567# Check for some linker flags
568ld_args_bsymbolic = []
Dylan Bakere21e0a62017-09-30 13:15:52 -0700569if cc.links('int main() { return 0; }', args : '-Wl,-Bsymbolic', name : 'Bsymbolic')
Dylan Bakerd1992252017-09-14 17:57:17 -0700570 ld_args_bsymbolic += '-Wl,-Bsymbolic'
571endif
572ld_args_gc_sections = []
573if cc.links('static char unused() { return 5; } int main() { return 0; }',
Dylan Bakere21e0a62017-09-30 13:15:52 -0700574 args : '-Wl,--gc-sections', name : 'gc-sections')
Dylan Bakerd1992252017-09-14 17:57:17 -0700575 ld_args_gc_sections += '-Wl,--gc-sections'
576endif
Dylan Bakere21e0a62017-09-30 13:15:52 -0700577with_ld_version_script = false
578if cc.links('int main() { return 0; }',
579 args : '-Wl,--version-script=@0@'.format(
580 join_paths(meson.source_root(), 'build-support/conftest.map')),
581 name : 'version-script')
582 with_ld_version_script = true
583endif
584with_ld_dynamic_list = false
585if cc.links('int main() { return 0; }',
586 args : '-Wl,--dynamic-list=@0@'.format(
587 join_paths(meson.source_root(), 'build-support/conftest.dyn')),
588 name : 'dynamic-list')
589 with_ld_dynamic_list = true
590endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700591
592# check for dl support
593if cc.has_function('dlopen')
594 dep_dl = []
595else
596 dep_dl = cc.find_library('dl')
597endif
Dylan Baker32180562017-09-20 20:11:32 -0700598if cc.has_function('dladdr', dependencies : dep_dl)
599 # This is really only required for megadrivers
600 pre_args += '-DHAVE_DLADDR'
Dylan Bakerd1992252017-09-14 17:57:17 -0700601endif
602
603if cc.has_function('dl_iterate_phdr')
604 pre_args += '-DHAVE_DL_ITERATE_PHDR'
605else
606 # TODO: this is required for vulkan
607endif
608
609# Determine whether or not the rt library is needed for time functions
610if cc.has_function('clock_gettime')
611 dep_clock = []
612else
613 dep_clock = cc.find_library('rt')
614endif
615
Dylan Baker66c94b92017-09-30 13:48:34 -0700616with_gallium_drisw_kms = false
Dylan Baker50c28df2017-09-29 17:53:01 -0700617dep_libdrm = dependency('libdrm', version : '>= 2.4.75',
618 required : with_dri2 or with_dri3)
619if dep_libdrm.found()
620 pre_args += '-DHAVE_LIBDRM'
Dylan Baker66c94b92017-09-30 13:48:34 -0700621 if with_dri_platform == 'drm' and with_dri
622 with_gallium_drisw_kms = true
623 endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700624endif
625
Dylan Bakerd1992252017-09-14 17:57:17 -0700626# TODO: some of these may be conditional
627dep_zlib = dependency('zlib', version : '>= 1.2.3')
628dep_thread = dependency('threads')
Dylan Baker50c28df2017-09-29 17:53:01 -0700629if dep_thread.found() and host_machine.system() == 'linux'
630 pre_args += '-DHAVE_PTHREAD'
631endif
Dylan Bakercc4f5872017-09-27 11:30:21 -0700632dep_elf = dependency('libelf', required : false)
Dylan Bakerb154b442017-09-30 14:04:28 -0700633if not dep_elf.found() and (with_amd_vk or with_gallium_radeonsi) # TODO: clover, r600
634 dep_elf = cc.find_library('elf')
Dylan Bakercc4f5872017-09-27 11:30:21 -0700635endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700636dep_expat = dependency('expat')
637# this only exists on linux so either this is linux and it will be found, or
638# its not linux and and wont
639dep_m = cc.find_library('m', required : false)
Dylan Baker66f97f62017-09-30 09:03:51 -0700640
641dep_libdrm_amdgpu = []
642dep_libdrm_radeon = []
Dylan Baker813b4b02017-10-09 14:59:35 -0700643dep_libdrm_nouveau = []
Dylan Baker51558a12017-10-20 15:45:22 -0700644dep_libdrm_etnaviv = []
Rob Clark4aa69cc2017-10-14 10:08:50 -0400645dep_libdrm_freedreno = []
Dylan Baker66f97f62017-09-30 09:03:51 -0700646if with_amd_vk or with_gallium_radeonsi
Andrey Grodzovsky19fc3cd2017-11-02 10:50:39 -0400647 dep_libdrm_amdgpu = dependency('libdrm_amdgpu', version : '>= 2.4.88')
Dylan Baker66f97f62017-09-30 09:03:51 -0700648endif
Dylan Bakereecd2862017-10-16 17:24:56 -0700649if with_gallium_radeonsi or with_dri_r100 or with_dri_r200
Dylan Baker66f97f62017-09-30 09:03:51 -0700650 dep_libdrm_radeon = dependency('libdrm_radeon', version : '>= 2.4.71')
651endif
Dylan Bakereb3bb032017-10-16 17:51:47 -0700652if with_gallium_nouveau or with_dri_nouveau
Dylan Baker813b4b02017-10-09 14:59:35 -0700653 dep_libdrm_nouveau = dependency('libdrm_nouveau', version : '>= 2.4.66')
654endif
Dylan Baker51558a12017-10-20 15:45:22 -0700655if with_gallium_etnaviv
656 dep_libdrm_etnaviv = dependency('libdrm_etnaviv', version : '>= 2.4.82')
657endif
Rob Clark4aa69cc2017-10-14 10:08:50 -0400658if with_gallium_freedreno
659 dep_libdrm_freedreno = dependency('libdrm_freedreno', version : '>= 2.4.74')
660endif
Dylan Baker673dda82017-09-20 11:53:29 -0700661
662llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit']
663if with_amd_vk
664 llvm_modules += ['amdgpu', 'bitreader', 'ipo']
665endif
Eric Anholtd975e692017-11-08 11:52:09 -0800666dep_llvm = []
Dylan Baker02cf3a82017-10-12 09:47:30 -0700667if with_llvm
Eric Anholtd975e692017-11-08 11:52:09 -0800668 dep_llvm = dependency(
669 'llvm', version : '>= 3.9.0', required : with_amd_vk, modules : llvm_modules,
670 )
Dylan Baker02cf3a82017-10-12 09:47:30 -0700671 if dep_llvm.found()
672 _llvm_version = dep_llvm.version().split('.')
673 # Development versions of LLVM have an 'svn' suffix, we don't want that for
674 # our version checks.
675 _llvm_patch = _llvm_version[2]
676 if _llvm_patch.endswith('svn')
677 _llvm_patch = _llvm_patch.split('s')[0]
678 endif
679 pre_args += [
680 '-DHAVE_LLVM=0x0@0@@1@@2@'.format(_llvm_version[0], _llvm_version[1], _llvm_patch),
681 '-DMESA_LLVM_VERSION_PATCH=@0@'.format(_llvm_patch),
682 ]
683 else
Dylan Baker6a9ad202017-10-10 14:56:39 -0700684 if with_gallium_softpipe
685 error('Cannot find LLVM to build LLVMPipe. If you wanted softpipe pass -Dllvm=false to meson')
686 elif with_amd_vk or with_gallium_radeonsi # etc
Dylan Baker66f97f62017-09-30 09:03:51 -0700687 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 -0700688 endif
Dylan Baker673dda82017-09-20 11:53:29 -0700689 endif
Dylan Baker66f97f62017-09-30 09:03:51 -0700690elif with_amd_vk or with_gallium_radeonsi
691 error('The following drivers requires LLVM: Radv, RadeonSI. One of these is enabled, but LLVM is disabled.')
Dylan Baker673dda82017-09-20 11:53:29 -0700692endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700693
Dylan Bakera47c5252017-09-22 12:55:00 -0700694dep_glvnd = []
695if with_glvnd
696 dep_glvnd = dependency('libglvnd', version : '>= 0.2.0')
697 pre_args += '-DUSE_LIBGLVND=1'
698endif
699
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +0200700if with_valgrind != 'false'
701 dep_valgrind = dependency('valgrind', required : with_valgrind == 'true')
702 if dep_valgrind.found()
703 pre_args += '-DHAVE_VALGRIND'
704 endif
705else
706 dep_valgrind = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700707endif
708
709# pthread stubs. Lets not and say we didn't
710
Dylan Baker32180562017-09-20 20:11:32 -0700711prog_bison = find_program('bison', required : with_any_opengl)
712prog_flex = find_program('flex', required : with_any_opengl)
713
Dylan Baker32180562017-09-20 20:11:32 -0700714dep_selinux = []
Eric Engestrom4b9421d2017-10-26 16:19:41 +0100715if get_option('selinux')
716 dep_selinux = dependency('libselinux')
717 pre_args += '-DMESA_SELINUX'
718endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700719
720# TODO: llvm-prefix and llvm-shared-libs
721
Erik Faye-Lund5c2ff572017-10-25 10:02:38 +0200722if with_libunwind != 'false'
723 dep_unwind = dependency('libunwind', required : with_libunwind == 'true')
724 if dep_unwind.found()
725 pre_args += '-DHAVE_LIBUNWIND'
726 endif
727else
728 dep_unwind = []
Dylan Bakerb1b65392017-09-28 22:25:02 -0700729endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700730
731# TODO: flags for opengl, gles, dri
732
733# TODO: gallium-hud
734
735# TODO: glx provider
736
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700737if with_osmesa != 'none'
738 if with_osmesa == 'classic' and not with_dri_swrast
739 error('OSMesa classic requires dri (classic) swrast.')
740 endif
Dylan Bakerf121a662017-10-24 15:52:57 -0700741 if with_osmesa == 'gallium' and not with_gallium_softpipe
742 error('OSMesa gallium requires gallium softpipe or llvmpipe.')
743 endif
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700744 osmesa_lib_name = 'OSMesa'
745 osmesa_bits = get_option('osmesa-bits')
746 if osmesa_bits != '8'
747 if with_dri or with_glx != 'disabled'
748 error('OSMesa bits must be 8 if building glx or dir based drivers')
749 endif
750 osmesa_lib_name = osmesa_lib_name + osmesa_bits
751 pre_args += [
752 '-DCHAN_BITS=@0@'.format(osmesa_bits), '-DDEFAULT_SOFTWARE_DEPTH_BITS=31'
753 ]
754 endif
755endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700756
Dylan Bakerd1992252017-09-14 17:57:17 -0700757# TODO: symbol mangling
758
Dylan Bakerd1992252017-09-14 17:57:17 -0700759if with_platform_wayland
760 prog_wl_scanner = find_program('wayland-scanner')
761 dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.8')
762 dep_wayland_client = dependency('wayland-client', version : '>=1.11')
763 dep_wayland_server = dependency('wayland-server', version : '>=1.11')
Dylan Baker108d2572017-10-18 12:20:43 -0700764 wayland_dmabuf_xml = join_paths(
765 dep_wl_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable',
766 'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml'
767 )
768 pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED']
Dylan Bakerd1992252017-09-14 17:57:17 -0700769else
770 prog_wl_scanner = []
771 dep_wl_protocols = []
772 dep_wayland_client = []
773 dep_wayland_server = []
Dylan Baker108d2572017-10-18 12:20:43 -0700774 wayland_dmabuf_xml = ''
Dylan Bakerd1992252017-09-14 17:57:17 -0700775endif
776
Dylan Baker50c28df2017-09-29 17:53:01 -0700777dep_x11 = []
778dep_xext = []
779dep_xdamage = []
780dep_xfixes = []
781dep_x11_xcb = []
Dylan Bakercbbd5bb2017-10-20 21:48:18 -0700782dep_xcb = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700783dep_xcb_glx = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700784dep_xcb_dri2 = []
785dep_xcb_dri3 = []
Dylan Bakera47c5252017-09-22 12:55:00 -0700786dep_dri2proto = []
787dep_glproto = []
Dylan Baker1f11ac42017-10-24 11:34:04 -0700788dep_xxf86vm = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700789dep_xcb_dri3 = []
790dep_xcb_present = []
791dep_xcb_sync = []
Dylan Baker108d2572017-10-18 12:20:43 -0700792dep_xcb_xfixes = []
Dylan Baker50c28df2017-09-29 17:53:01 -0700793dep_xshmfence = []
Dylan Bakerd1992252017-09-14 17:57:17 -0700794if with_platform_x11
Dylan Baker50c28df2017-09-29 17:53:01 -0700795 if with_glx == 'dri' and with_dri_platform == 'drm'
796 dep_x11 = dependency('x11')
797 dep_xext = dependency('xext')
798 dep_xdamage = dependency('xdamage', version : '>= 1.1')
799 dep_xfixes = dependency('xfixes')
800 dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1')
Dylan Baker1f11ac42017-10-24 11:34:04 -0700801 dep_xxf86vm = dependency('xxf86vm', required : false)
Dylan Bakera47c5252017-09-22 12:55:00 -0700802 endif
803 if with_any_vk or (with_glx == 'dri' and with_dri_platform == 'drm')
Dylan Baker50c28df2017-09-29 17:53:01 -0700804 dep_xcb = dependency('xcb')
805 dep_x11_xcb = dependency('x11-xcb')
806 dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8')
807
Dylan Bakera47c5252017-09-22 12:55:00 -0700808 if with_dri3
809 pre_args += '-DHAVE_DRI3'
Dylan Baker50c28df2017-09-29 17:53:01 -0700810 dep_xcb_dri3 = dependency('xcb-dri3')
811 dep_xcb_present = dependency('xcb-present')
812 dep_xcb_sync = dependency('xcb-sync')
813 dep_xshmfence = dependency('xshmfence', version : '>= 1.1')
Dylan Bakera47c5252017-09-22 12:55:00 -0700814 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700815 endif
Dylan Baker50c28df2017-09-29 17:53:01 -0700816 if with_glx != 'disabled'
817 dep_dri2proto = dependency('dri2proto', version : '>= 2.8')
818 dep_glproto = dependency('glproto', version : '>= 1.4.14')
819 endif
Dylan Baker108d2572017-10-18 12:20:43 -0700820 if with_egl
821 dep_xcb_xfixes = dependency('xcb-xfixes')
822 endif
Dylan Bakerd1992252017-09-14 17:57:17 -0700823endif
824
Dylan Bakerd1992252017-09-14 17:57:17 -0700825# TODO: osmesa
826
Dylan Bakerd1992252017-09-14 17:57:17 -0700827# TODO: vallium G3DVL
828
829# TODO: nine
830
831# TODO: clover
832
Dylan Bakerd1992252017-09-14 17:57:17 -0700833# TODO: gallium tests
834
835# TODO: various libdirs
836
837# TODO: swr
838
839# TODO: gallium driver dirs
840
841# FIXME: this is a workaround for #2326
842prog_touch = find_program('touch')
843dummy_cpp = custom_target(
844 'dummy_cpp',
845 output : 'dummy.cpp',
846 command : [prog_touch, '@OUTPUT@'],
847)
848
849foreach a : pre_args
850 add_project_arguments(a, language : ['c', 'cpp'])
851endforeach
852foreach a : c_args
853 add_project_arguments(a, language : ['c'])
854endforeach
855foreach a : cpp_args
856 add_project_arguments(a, language : ['cpp'])
857endforeach
858
859inc_include = include_directories('include')
860
Dylan Baker108d2572017-10-18 12:20:43 -0700861gl_priv_reqs = [
862 'x11', 'xext', 'xdamage >= 1.1', 'xfixes', 'x11-xcb', 'xcb',
863 'xcb-glx >= 1.8.1', 'libdrm >= 2.4.75',
864]
Dylan Baker1f11ac42017-10-24 11:34:04 -0700865if dep_xxf86vm != [] and dep_xxf86vm.found()
Dylan Bakerb92992e2017-10-24 11:28:42 -0700866 gl_priv_reqs += 'xxf86vm'
Dylan Baker108d2572017-10-18 12:20:43 -0700867endif
868if with_dri_platform == 'drm'
869 gl_priv_reqs += 'xcb-dri2 >= 1.8'
870endif
871
872gl_priv_libs = []
873if dep_thread.found()
874 gl_priv_libs += ['-lpthread', '-pthread']
875endif
876if dep_m.found()
877 gl_priv_libs += '-lm'
878endif
879if dep_dl.found()
880 gl_priv_libs += '-ldl'
881endif
882
Dylan Baker32180562017-09-20 20:11:32 -0700883pkg = import('pkgconfig')
884
Dylan Bakerd1992252017-09-14 17:57:17 -0700885subdir('include')
Eric Engestrom05a94a42017-10-24 18:03:39 +0100886subdir('bin')
Dylan Bakerd1992252017-09-14 17:57:17 -0700887subdir('src')