Dylan Baker | c1a290b | 2020-04-24 10:58:53 -0700 | [diff] [blame] | 1 | # Copyright © 2017-2020 Intel Corporation |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 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 Engestrom | 7983adc | 2017-10-24 14:57:11 +0100 | [diff] [blame] | 21 | project( |
| 22 | 'mesa', |
| 23 | ['c', 'cpp'], |
Dylan Baker | 3e9533d | 2017-11-01 11:54:10 -0700 | [diff] [blame] | 24 | version : run_command( |
Eric Engestrom | 9595b23 | 2020-02-02 15:29:08 +0000 | [diff] [blame] | 25 | [find_program('python', 'python3'), 'bin/meson_get_version.py'] |
Dylan Baker | 3e9533d | 2017-11-01 11:54:10 -0700 | [diff] [blame] | 26 | ).stdout(), |
Eric Engestrom | 7983adc | 2017-10-24 14:57:11 +0100 | [diff] [blame] | 27 | license : 'MIT', |
Dylan Baker | c1a290b | 2020-04-24 10:58:53 -0700 | [diff] [blame] | 28 | meson_version : '>= 0.52', |
Kai Wasserbäch | 1abe873 | 2019-08-17 10:59:43 +0200 | [diff] [blame] | 29 | default_options : ['buildtype=debugoptimized', 'b_ndebug=if-release', 'c_std=c99', 'cpp_std=c++14'] |
Eric Engestrom | 7983adc | 2017-10-24 14:57:11 +0100 | [diff] [blame] | 30 | ) |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 31 | |
Dylan Baker | 65e447c | 2018-06-11 10:15:15 -0700 | [diff] [blame] | 32 | cc = meson.get_compiler('c') |
| 33 | cpp = meson.get_compiler('cpp') |
| 34 | |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 35 | null_dep = dependency('', required : false) |
| 36 | |
Eric Engestrom | ecca5ef | 2020-02-15 10:53:26 +0000 | [diff] [blame] | 37 | if get_option('layout') != 'mirror' |
| 38 | error('`mirror` is the only build directory layout supported') |
| 39 | endif |
| 40 | |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 41 | # Arguments for the preprocessor, put these in a separate array from the C and |
| 42 | # C++ (cpp in meson terminology) arguments since they need to be added to the |
| 43 | # default arguments for both C and C++. |
| 44 | pre_args = [ |
| 45 | '-D__STDC_CONSTANT_MACROS', |
| 46 | '-D__STDC_FORMAT_MACROS', |
| 47 | '-D__STDC_LIMIT_MACROS', |
Eric Engestrom | c0c5337 | 2018-11-23 16:37:50 +0000 | [diff] [blame] | 48 | '-DPACKAGE_VERSION="@0@"'.format(meson.project_version()), |
Eric Engestrom | 444138d | 2020-05-20 01:02:52 +0200 | [diff] [blame] | 49 | '-DPACKAGE_BUGREPORT="https://gitlab.freedesktop.org/mesa/mesa/-/issues"', |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 50 | ] |
| 51 | |
Dylan Baker | e915b8d | 2017-09-28 14:02:51 -0700 | [diff] [blame] | 52 | with_vulkan_icd_dir = get_option('vulkan-icd-dir') |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 53 | with_tests = get_option('build-tests') |
Matt Turner | a5abb2d | 2018-06-06 20:25:09 -0700 | [diff] [blame] | 54 | with_glx_read_only_text = get_option('glx-read-only-text') |
Dylan Baker | 7a90886 | 2018-12-04 10:06:08 -0800 | [diff] [blame] | 55 | with_glx_direct = get_option('glx-direct') |
Dylan Baker | cbbd5bb | 2017-10-20 21:48:18 -0700 | [diff] [blame] | 56 | with_osmesa = get_option('osmesa') |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 57 | with_swr_arches = get_option('swr-arches') |
Samuel Pitoiset | d6db858 | 2019-11-22 12:16:50 +0100 | [diff] [blame] | 58 | with_vulkan_overlay_layer = get_option('vulkan-overlay-layer') |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 59 | with_tools = get_option('tools') |
Scott D Phillips | 1f4d243 | 2018-02-07 16:55:24 -0800 | [diff] [blame] | 60 | if with_tools.contains('all') |
Eric Anholt | 82bf197 | 2018-09-25 19:15:45 -0700 | [diff] [blame] | 61 | with_tools = [ |
| 62 | 'drm-shim', |
| 63 | 'etnaviv', |
| 64 | 'freedreno', |
| 65 | 'glsl', |
| 66 | 'intel', |
Eric Engestrom | 9911371 | 2019-08-03 02:33:42 +0100 | [diff] [blame] | 67 | 'intel-ui', |
Erico Nunes | 99d5bdc | 2019-08-16 15:19:59 +0200 | [diff] [blame] | 68 | 'lima', |
Eric Anholt | 82bf197 | 2018-09-25 19:15:45 -0700 | [diff] [blame] | 69 | 'nir', |
| 70 | 'nouveau', |
| 71 | 'xvmc', |
| 72 | ] |
Scott D Phillips | 1f4d243 | 2018-02-07 16:55:24 -0800 | [diff] [blame] | 73 | endif |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 74 | |
Samuel Pitoiset | d6db858 | 2019-11-22 12:16:50 +0100 | [diff] [blame] | 75 | with_intel_tools = with_tools.contains('intel') or with_tools.contains('intel-ui') |
| 76 | with_imgui = with_intel_tools or with_vulkan_overlay_layer |
| 77 | |
Dylan Baker | db97884 | 2017-09-28 13:59:04 -0700 | [diff] [blame] | 78 | dri_drivers_path = get_option('dri-drivers-path') |
| 79 | if dri_drivers_path == '' |
Sergii Romantsov | f6556ec | 2019-02-21 10:28:11 +0200 | [diff] [blame] | 80 | dri_drivers_path = join_paths(get_option('prefix'), get_option('libdir'), 'dri') |
Dylan Baker | db97884 | 2017-09-28 13:59:04 -0700 | [diff] [blame] | 81 | endif |
Dylan Baker | d7235ef | 2018-01-16 10:36:28 -0800 | [diff] [blame] | 82 | dri_search_path = get_option('dri-search-path') |
| 83 | if dri_search_path == '' |
Sergii Romantsov | f6556ec | 2019-02-21 10:28:11 +0200 | [diff] [blame] | 84 | dri_search_path = dri_drivers_path |
Dylan Baker | d7235ef | 2018-01-16 10:36:28 -0800 | [diff] [blame] | 85 | endif |
Dylan Baker | db97884 | 2017-09-28 13:59:04 -0700 | [diff] [blame] | 86 | |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 87 | with_gles1 = get_option('gles1') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 88 | if with_gles1 == 'true' |
| 89 | with_gles1 = 'enabled' |
| 90 | warning('gles1 option "true" deprecated, please use "enabled" instead.') |
| 91 | elif with_gles1 == 'false' |
| 92 | with_gles1 = 'disabled' |
| 93 | warning('gles1 option "false" deprecated, please use "disabled" instead.') |
| 94 | endif |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 95 | with_gles2 = get_option('gles2') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 96 | if with_gles2 == 'true' |
| 97 | with_gles2 = 'enabled' |
| 98 | warning('gles2 option "true" deprecated, please use "enabled" instead.') |
| 99 | elif with_gles2 == 'false' |
| 100 | with_gles2 = 'disabled' |
| 101 | warning('gles2 option "false" deprecated, please use "disabled" instead.') |
| 102 | endif |
Dylan Baker | ddc15fb | 2018-10-19 09:47:41 -0700 | [diff] [blame] | 103 | if host_machine.system() == 'windows' |
| 104 | if with_gles1 == 'auto' |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 105 | with_gles1 = 'disabled' |
Dylan Baker | ddc15fb | 2018-10-19 09:47:41 -0700 | [diff] [blame] | 106 | endif |
| 107 | if with_gles2 == 'auto' |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 108 | with_gles2 = 'disabled' |
Dylan Baker | ddc15fb | 2018-10-19 09:47:41 -0700 | [diff] [blame] | 109 | endif |
| 110 | endif |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 111 | with_opengl = get_option('opengl') |
Dylan Baker | 8424209 | 2019-05-31 16:16:22 -0700 | [diff] [blame] | 112 | |
| 113 | # Default shared glapi off for windows, on elsewhere. |
| 114 | _sg = get_option('shared-glapi') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 115 | if _sg == 'true' |
| 116 | _sg = 'enabled' |
| 117 | warning('shared-glapi option "true" deprecated, please use "enabled" instead.') |
| 118 | elif _sg == 'false' |
| 119 | _sg = 'disabled' |
| 120 | warning('shared-glapi option "false" deprecated, please use "disabled" instead.') |
| 121 | endif |
Dylan Baker | 8424209 | 2019-05-31 16:16:22 -0700 | [diff] [blame] | 122 | if _sg == 'auto' |
| 123 | with_shared_glapi = host_machine.system() != 'windows' |
| 124 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 125 | with_shared_glapi = _sg == 'enabled' |
Dylan Baker | 8424209 | 2019-05-31 16:16:22 -0700 | [diff] [blame] | 126 | endif |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 127 | |
| 128 | # shared-glapi is required if at least two OpenGL APIs are being built |
| 129 | if not with_shared_glapi |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 130 | if ((with_gles1 == 'enabled' and with_gles2 == 'enabled') or |
| 131 | (with_gles1 == 'enabled' and with_opengl) or |
| 132 | (with_gles2 == 'enabled' and with_opengl)) |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 133 | error('shared-glapi required for building two or more of OpenGL, OpenGL ES 1.x, OpenGL ES 2.x') |
| 134 | endif |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 135 | with_gles1 = 'disabled' |
| 136 | with_gles2 = 'disabled' |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 137 | endif |
| 138 | |
| 139 | # We require OpenGL for OpenGL ES |
Dylan Baker | ddc15fb | 2018-10-19 09:47:41 -0700 | [diff] [blame] | 140 | if not with_opengl |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 141 | if (with_gles1 == 'enabled' or with_gles2 == 'enabled') and not with_opengl |
Dylan Baker | ddc15fb | 2018-10-19 09:47:41 -0700 | [diff] [blame] | 142 | error('building OpenGL ES without OpenGL is not supported.') |
| 143 | endif |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 144 | with_gles1 = 'disabled' |
| 145 | with_gles2 = 'disabled' |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 146 | endif |
| 147 | |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 148 | with_gles1 = with_gles1 != 'disabled' |
| 149 | with_gles2 = with_gles2 != 'disabled' |
Dylan Baker | ddc15fb | 2018-10-19 09:47:41 -0700 | [diff] [blame] | 150 | with_any_opengl = with_opengl or with_gles1 or with_gles2 |
| 151 | # Only build shared_glapi if at least one OpenGL API is enabled |
Dylan Baker | 8424209 | 2019-05-31 16:16:22 -0700 | [diff] [blame] | 152 | with_shared_glapi = with_shared_glapi and with_any_opengl |
Dylan Baker | ddc15fb | 2018-10-19 09:47:41 -0700 | [diff] [blame] | 153 | |
Alan Coopersmith | d8a9420 | 2019-10-07 18:46:41 -0700 | [diff] [blame] | 154 | system_has_kms_drm = ['openbsd', 'netbsd', 'freebsd', 'gnu/kfreebsd', 'dragonfly', 'linux', 'sunos'].contains(host_machine.system()) |
Greg V | e30a165 | 2018-03-06 22:16:03 +0300 | [diff] [blame] | 155 | |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 156 | dri_drivers = get_option('dri-drivers') |
| 157 | if dri_drivers.contains('auto') |
Greg V | e30a165 | 2018-03-06 22:16:03 +0300 | [diff] [blame] | 158 | if system_has_kms_drm |
Jon Turney | 4772909 | 2018-02-02 22:25:48 +0000 | [diff] [blame] | 159 | # TODO: PPC, Sparc |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 160 | if ['x86', 'x86_64'].contains(host_machine.cpu_family()) |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 161 | dri_drivers = ['i915', 'i965', 'r100', 'r200', 'nouveau'] |
Daniel Stone | d7603cb | 2018-02-27 10:00:24 +0000 | [diff] [blame] | 162 | elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 163 | dri_drivers = [] |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 164 | else |
Guido Günther | 05e2fc6 | 2018-08-26 22:23:59 +0200 | [diff] [blame] | 165 | error('Unknown architecture @0@. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.'.format( |
| 166 | host_machine.cpu_family())) |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 167 | endif |
Alexander von Gluck IV | 834d221 | 2018-02-16 16:56:31 -0600 | [diff] [blame] | 168 | elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system()) |
Jon Turney | 4772909 | 2018-02-02 22:25:48 +0000 | [diff] [blame] | 169 | # only swrast would make sense here, but gallium swrast is a much better default |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 170 | dri_drivers = [] |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 171 | else |
Guido Günther | 05e2fc6 | 2018-08-26 22:23:59 +0200 | [diff] [blame] | 172 | error('Unknown OS @0@. Please pass -Ddri-drivers to set driver options. Patches gladly accepted to fix this.'.format( |
| 173 | host_machine.system())) |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 174 | endif |
| 175 | endif |
Eric Engestrom | 393abd6 | 2018-05-10 16:03:30 +0100 | [diff] [blame] | 176 | |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 177 | with_dri_i915 = dri_drivers.contains('i915') |
| 178 | with_dri_i965 = dri_drivers.contains('i965') |
| 179 | with_dri_r100 = dri_drivers.contains('r100') |
| 180 | with_dri_r200 = dri_drivers.contains('r200') |
| 181 | with_dri_nouveau = dri_drivers.contains('nouveau') |
| 182 | with_dri_swrast = dri_drivers.contains('swrast') |
Eric Engestrom | 393abd6 | 2018-05-10 16:03:30 +0100 | [diff] [blame] | 183 | |
Eric Engestrom | d321446 | 2018-05-14 16:40:47 +0100 | [diff] [blame] | 184 | with_dri = dri_drivers.length() != 0 |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 185 | |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 186 | gallium_drivers = get_option('gallium-drivers') |
| 187 | if gallium_drivers.contains('auto') |
Greg V | e30a165 | 2018-03-06 22:16:03 +0300 | [diff] [blame] | 188 | if system_has_kms_drm |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 189 | # TODO: PPC, Sparc |
| 190 | if ['x86', 'x86_64'].contains(host_machine.cpu_family()) |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 191 | gallium_drivers = [ |
Kenneth Graunke | ab016a6 | 2019-12-05 15:30:26 -0800 | [diff] [blame] | 192 | 'r300', 'r600', 'radeonsi', 'nouveau', 'virgl', 'svga', 'swrast', |
| 193 | 'iris' |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 194 | ] |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 195 | elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 196 | gallium_drivers = [ |
Rob Herring | 41a0acd | 2019-01-24 14:03:54 -0600 | [diff] [blame] | 197 | 'kmsro', 'v3d', 'vc4', 'freedreno', 'etnaviv', 'nouveau', |
Alyssa Rosenzweig | 77295b1 | 2019-08-05 08:25:37 -0700 | [diff] [blame] | 198 | 'tegra', 'virgl', 'lima', 'panfrost', 'swrast' |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 199 | ] |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 200 | else |
Guido Günther | 05e2fc6 | 2018-08-26 22:23:59 +0200 | [diff] [blame] | 201 | error('Unknown architecture @0@. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.'.format( |
| 202 | host_machine.cpu_family())) |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 203 | endif |
Alexander von Gluck IV | 834d221 | 2018-02-16 16:56:31 -0600 | [diff] [blame] | 204 | elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system()) |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 205 | gallium_drivers = ['swrast'] |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 206 | else |
Guido Günther | 05e2fc6 | 2018-08-26 22:23:59 +0200 | [diff] [blame] | 207 | error('Unknown OS @0@. Please pass -Dgallium-drivers to set driver options. Patches gladly accepted to fix this.'.format( |
| 208 | host_machine.system())) |
Dylan Baker | 1873327 | 2017-10-30 10:17:22 -0700 | [diff] [blame] | 209 | endif |
| 210 | endif |
Erik Faye-Lund | 2127403 | 2019-04-12 17:51:08 +0200 | [diff] [blame] | 211 | with_gallium_kmsro = gallium_drivers.contains('kmsro') |
| 212 | with_gallium_radeonsi = gallium_drivers.contains('radeonsi') |
| 213 | with_gallium_r300 = gallium_drivers.contains('r300') |
| 214 | with_gallium_r600 = gallium_drivers.contains('r600') |
| 215 | with_gallium_nouveau = gallium_drivers.contains('nouveau') |
| 216 | with_gallium_freedreno = gallium_drivers.contains('freedreno') |
| 217 | with_gallium_softpipe = gallium_drivers.contains('swrast') |
| 218 | with_gallium_vc4 = gallium_drivers.contains('vc4') |
| 219 | with_gallium_v3d = gallium_drivers.contains('v3d') |
| 220 | with_gallium_panfrost = gallium_drivers.contains('panfrost') |
| 221 | with_gallium_etnaviv = gallium_drivers.contains('etnaviv') |
| 222 | with_gallium_tegra = gallium_drivers.contains('tegra') |
| 223 | with_gallium_iris = gallium_drivers.contains('iris') |
| 224 | with_gallium_i915 = gallium_drivers.contains('i915') |
| 225 | with_gallium_svga = gallium_drivers.contains('svga') |
| 226 | with_gallium_virgl = gallium_drivers.contains('virgl') |
| 227 | with_gallium_swr = gallium_drivers.contains('swr') |
| 228 | with_gallium_lima = gallium_drivers.contains('lima') |
Erik Faye-Lund | 8d46e35 | 2018-08-31 16:50:20 +0200 | [diff] [blame] | 229 | with_gallium_zink = gallium_drivers.contains('zink') |
Eric Engestrom | a425db4 | 2018-05-10 16:04:26 +0100 | [diff] [blame] | 230 | |
Eric Engestrom | d321446 | 2018-05-14 16:40:47 +0100 | [diff] [blame] | 231 | with_gallium = gallium_drivers.length() != 0 |
Eric Engestrom | a425db4 | 2018-05-10 16:04:26 +0100 | [diff] [blame] | 232 | |
| 233 | if with_gallium and system_has_kms_drm |
| 234 | _glx = get_option('glx') |
| 235 | _egl = get_option('egl') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 236 | if _glx == 'dri' or _egl == 'enabled' or (_glx == 'disabled' and _egl != 'disabled') |
Eric Engestrom | a425db4 | 2018-05-10 16:04:26 +0100 | [diff] [blame] | 237 | with_dri = true |
Dylan Baker | f74cf04 | 2018-02-28 10:13:38 -0800 | [diff] [blame] | 238 | endif |
Ville Syrjälä | 2289964 | 2017-10-10 01:15:42 +0300 | [diff] [blame] | 239 | endif |
| 240 | |
Jason Ekstrand | 00fb21b | 2017-11-11 10:30:35 -0800 | [diff] [blame] | 241 | _vulkan_drivers = get_option('vulkan-drivers') |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 242 | if _vulkan_drivers.contains('auto') |
Greg V | e30a165 | 2018-03-06 22:16:03 +0300 | [diff] [blame] | 243 | if system_has_kms_drm |
Jason Ekstrand | 00fb21b | 2017-11-11 10:30:35 -0800 | [diff] [blame] | 244 | if host_machine.cpu_family().startswith('x86') |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 245 | _vulkan_drivers = ['amd', 'intel'] |
Guido Günther | 9de34b4 | 2018-08-26 22:24:00 +0200 | [diff] [blame] | 246 | elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) |
| 247 | _vulkan_drivers = [] |
Jason Ekstrand | 00fb21b | 2017-11-11 10:30:35 -0800 | [diff] [blame] | 248 | else |
Guido Günther | 05e2fc6 | 2018-08-26 22:23:59 +0200 | [diff] [blame] | 249 | error('Unknown architecture @0@. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.'.format( |
| 250 | host_machine.cpu_family())) |
Jason Ekstrand | 00fb21b | 2017-11-11 10:30:35 -0800 | [diff] [blame] | 251 | endif |
Alexander von Gluck IV | 834d221 | 2018-02-16 16:56:31 -0600 | [diff] [blame] | 252 | elif ['darwin', 'windows', 'cygwin', 'haiku'].contains(host_machine.system()) |
Jason Ekstrand | 00fb21b | 2017-11-11 10:30:35 -0800 | [diff] [blame] | 253 | # No vulkan driver supports windows or macOS currently |
Eric Engestrom | 03a2e7b | 2018-05-10 16:12:12 +0100 | [diff] [blame] | 254 | _vulkan_drivers = [] |
Jon Turney | 4772909 | 2018-02-02 22:25:48 +0000 | [diff] [blame] | 255 | else |
Guido Günther | 05e2fc6 | 2018-08-26 22:23:59 +0200 | [diff] [blame] | 256 | error('Unknown OS @0@. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.'.format( |
| 257 | host_machine.system())) |
Jason Ekstrand | 00fb21b | 2017-11-11 10:30:35 -0800 | [diff] [blame] | 258 | endif |
| 259 | endif |
Eric Engestrom | a92cdcd | 2018-05-10 16:05:05 +0100 | [diff] [blame] | 260 | |
| 261 | with_intel_vk = _vulkan_drivers.contains('intel') |
| 262 | with_amd_vk = _vulkan_drivers.contains('amd') |
Bas Nieuwenhuizen | 26380b3 | 2018-08-08 22:23:57 +0000 | [diff] [blame] | 263 | with_freedreno_vk = _vulkan_drivers.contains('freedreno') |
Eric Engestrom | d321446 | 2018-05-14 16:40:47 +0100 | [diff] [blame] | 264 | with_any_vk = _vulkan_drivers.length() != 0 |
Jason Ekstrand | 00fb21b | 2017-11-11 10:30:35 -0800 | [diff] [blame] | 265 | |
Dylan Baker | e0b037d | 2017-11-29 17:50:05 -0800 | [diff] [blame] | 266 | if with_dri_swrast and (with_gallium_softpipe or with_gallium_swr) |
Dylan Baker | de24d61 | 2017-10-10 14:27:19 -0700 | [diff] [blame] | 267 | error('Only one swrast provider can be built') |
| 268 | endif |
Dylan Baker | 9169dde | 2017-10-25 16:54:53 -0700 | [diff] [blame] | 269 | if with_dri_i915 and with_gallium_i915 |
| 270 | error('Only one i915 provider can be built') |
| 271 | endif |
Eric Anholt | 7e06983 | 2019-04-03 15:40:22 -0700 | [diff] [blame] | 272 | if with_gallium_kmsro and not (with_gallium_v3d or with_gallium_vc4 or with_gallium_etnaviv or with_gallium_freedreno or with_gallium_panfrost or with_gallium_lima) |
Rob Herring | b1da194 | 2019-01-25 10:39:40 -0600 | [diff] [blame] | 273 | error('kmsro driver requires one or more renderonly drivers (vc4, etnaviv, freedreno, panfrost, lima)') |
Eric Engestrom | f0337f0 | 2017-12-04 15:06:03 +0000 | [diff] [blame] | 274 | endif |
Thierry Reding | 1755f60 | 2014-05-28 00:36:48 +0200 | [diff] [blame] | 275 | if with_gallium_tegra and not with_gallium_nouveau |
| 276 | error('tegra driver requires nouveau driver') |
| 277 | endif |
Dylan Baker | de24d61 | 2017-10-10 14:27:19 -0700 | [diff] [blame] | 278 | |
Dylan Baker | 33627d2 | 2017-10-27 17:20:52 -0700 | [diff] [blame] | 279 | if host_machine.system() == 'darwin' |
| 280 | with_dri_platform = 'apple' |
Eric Engestrom | bf8b5de | 2019-07-30 15:41:06 +0100 | [diff] [blame] | 281 | pre_args += '-DBUILDING_MESA' |
Dylan Baker | 33627d2 | 2017-10-27 17:20:52 -0700 | [diff] [blame] | 282 | elif ['windows', 'cygwin'].contains(host_machine.system()) |
| 283 | with_dri_platform = 'windows' |
Greg V | c38c60a | 2018-01-24 21:02:40 +0300 | [diff] [blame] | 284 | elif system_has_kms_drm |
Dylan Baker | 33627d2 | 2017-10-27 17:20:52 -0700 | [diff] [blame] | 285 | with_dri_platform = 'drm' |
| 286 | else |
| 287 | # FIXME: haiku doesn't use dri, and xlib doesn't use dri, probably should |
| 288 | # assert here that one of those cases has been met. |
Greg V | c38c60a | 2018-01-24 21:02:40 +0300 | [diff] [blame] | 289 | # FIXME: illumos ends up here as well |
Dylan Baker | 33627d2 | 2017-10-27 17:20:52 -0700 | [diff] [blame] | 290 | with_dri_platform = 'none' |
| 291 | endif |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 292 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 293 | _platforms = get_option('platforms') |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 294 | if _platforms.contains('auto') |
Greg V | c38c60a | 2018-01-24 21:02:40 +0300 | [diff] [blame] | 295 | if system_has_kms_drm |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 296 | _platforms = ['x11', 'wayland', 'drm', 'surfaceless'] |
Dylan Baker | 70cac06 | 2018-04-18 13:17:20 -0700 | [diff] [blame] | 297 | elif ['darwin', 'cygwin'].contains(host_machine.system()) |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 298 | _platforms = ['x11', 'surfaceless'] |
Alexander von Gluck IV | 834d221 | 2018-02-16 16:56:31 -0600 | [diff] [blame] | 299 | elif ['haiku'].contains(host_machine.system()) |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 300 | _platforms = ['haiku'] |
Dylan Baker | 70cac06 | 2018-04-18 13:17:20 -0700 | [diff] [blame] | 301 | elif host_machine.system() == 'windows' |
| 302 | _platforms = ['windows'] |
Dylan Baker | 4b61b07 | 2017-11-15 17:31:32 -0800 | [diff] [blame] | 303 | else |
Guido Günther | 05e2fc6 | 2018-08-26 22:23:59 +0200 | [diff] [blame] | 304 | error('Unknown OS @0@. Please pass -Dplatforms to set platforms. Patches gladly accepted to fix this.'.format( |
| 305 | host_machine.system())) |
Dylan Baker | 4b61b07 | 2017-11-15 17:31:32 -0800 | [diff] [blame] | 306 | endif |
| 307 | endif |
Eric Engestrom | 0ed6a87 | 2018-05-10 16:11:29 +0100 | [diff] [blame] | 308 | |
| 309 | with_platform_android = _platforms.contains('android') |
| 310 | with_platform_x11 = _platforms.contains('x11') |
| 311 | with_platform_wayland = _platforms.contains('wayland') |
| 312 | with_platform_drm = _platforms.contains('drm') |
| 313 | with_platform_haiku = _platforms.contains('haiku') |
| 314 | with_platform_surfaceless = _platforms.contains('surfaceless') |
Dylan Baker | 70cac06 | 2018-04-18 13:17:20 -0700 | [diff] [blame] | 315 | with_platform_windows = _platforms.contains('windows') |
Eric Engestrom | 0ed6a87 | 2018-05-10 16:11:29 +0100 | [diff] [blame] | 316 | |
Eric Engestrom | d321446 | 2018-05-14 16:40:47 +0100 | [diff] [blame] | 317 | if _platforms.length() != 0 |
Dylan Baker | 5608d0a | 2018-04-16 15:18:08 -0700 | [diff] [blame] | 318 | egl_native_platform = _platforms[0] |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 319 | endif |
| 320 | |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 321 | _xlib_lease = get_option('xlib-lease') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 322 | if _xlib_lease == 'true' |
| 323 | _xlib_lease = 'enabled' |
| 324 | warning('xlib_lease option "true" deprecated, please use "enabled" instead.') |
| 325 | elif _xlib_lease == 'false' |
| 326 | _xlib_lease = 'disabled' |
| 327 | warning('xlib_lease option "false" deprecated, please use "disabled" instead.') |
| 328 | endif |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 329 | if _xlib_lease == 'auto' |
| 330 | with_xlib_lease = with_platform_x11 and with_platform_drm |
| 331 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 332 | with_xlib_lease = _xlib_lease == 'enabled' |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 333 | endif |
| 334 | |
Dylan Baker | 118a7f0 | 2017-11-01 17:42:41 -0700 | [diff] [blame] | 335 | with_glx = get_option('glx') |
| 336 | if with_glx == 'auto' |
| 337 | if with_dri |
| 338 | with_glx = 'dri' |
Alexander von Gluck IV | 834d221 | 2018-02-16 16:56:31 -0600 | [diff] [blame] | 339 | elif with_platform_haiku |
| 340 | with_glx = 'disabled' |
Dylan Baker | e1e2388 | 2018-04-18 13:17:50 -0700 | [diff] [blame] | 341 | elif host_machine.system() == 'windows' |
| 342 | with_glx = 'disabled' |
Dylan Baker | 118a7f0 | 2017-11-01 17:42:41 -0700 | [diff] [blame] | 343 | elif with_gallium |
Dylan Baker | ad9c2f5 | 2017-11-02 13:36:44 -0700 | [diff] [blame] | 344 | # Even when building just gallium drivers the user probably wants dri |
| 345 | with_glx = 'dri' |
Dylan Baker | 118a7f0 | 2017-11-01 17:42:41 -0700 | [diff] [blame] | 346 | elif with_platform_x11 and with_any_opengl and not with_any_vk |
| 347 | # The automatic behavior should not be to turn on xlib based glx when |
| 348 | # building only vulkan drivers |
| 349 | with_glx = 'xlib' |
| 350 | else |
| 351 | with_glx = 'disabled' |
| 352 | endif |
| 353 | endif |
Jon Turney | ab7aa0f | 2018-01-15 19:39:46 +0000 | [diff] [blame] | 354 | if with_glx == 'dri' |
| 355 | if with_gallium |
| 356 | with_dri = true |
| 357 | endif |
| 358 | endif |
Dylan Baker | 118a7f0 | 2017-11-01 17:42:41 -0700 | [diff] [blame] | 359 | |
Dylan Baker | 7cf50af | 2019-07-01 10:04:03 -0700 | [diff] [blame] | 360 | if not (with_dri or with_gallium or with_glx != 'disabled') |
Dylan Baker | 118a7f0 | 2017-11-01 17:42:41 -0700 | [diff] [blame] | 361 | with_gles1 = false |
| 362 | with_gles2 = false |
| 363 | with_opengl = false |
| 364 | with_any_opengl = false |
| 365 | with_shared_glapi = false |
| 366 | endif |
| 367 | |
Eric Engestrom | 76e8d61 | 2018-02-23 17:08:20 +0000 | [diff] [blame] | 368 | _gbm = get_option('gbm') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 369 | if _gbm == 'true' |
| 370 | _gbm = 'enabled' |
| 371 | warning('gbm option "true" deprecated, please use "enabled" instead.') |
| 372 | elif _gbm == 'false' |
| 373 | _gbm = 'disabled' |
| 374 | warning('gbm option "false" deprecated, please use "disabled" instead.') |
| 375 | endif |
Eric Engestrom | 76e8d61 | 2018-02-23 17:08:20 +0000 | [diff] [blame] | 376 | if _gbm == 'auto' |
| 377 | with_gbm = system_has_kms_drm and with_dri |
Dylan Baker | 816bf7d1 | 2017-09-28 15:53:53 -0700 | [diff] [blame] | 378 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 379 | with_gbm = _gbm == 'enabled' |
Eric Engestrom | 76e8d61 | 2018-02-23 17:08:20 +0000 | [diff] [blame] | 380 | endif |
| 381 | if with_gbm and not system_has_kms_drm |
| 382 | error('GBM only supports DRM/KMS platforms') |
Dylan Baker | 816bf7d1 | 2017-09-28 15:53:53 -0700 | [diff] [blame] | 383 | endif |
| 384 | |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 385 | _egl = get_option('egl') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 386 | if _egl == 'true' |
| 387 | _egl = 'enabled' |
| 388 | warning('egl option "true" deprecated, please use "enabled" instead.') |
| 389 | elif _egl == 'false' |
| 390 | _egl = 'disabled' |
| 391 | warning('egl option "false" deprecated, please use "disabled" instead.') |
| 392 | endif |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 393 | if _egl == 'auto' |
Dylan Baker | b852170 | 2018-10-01 12:40:34 -0700 | [diff] [blame] | 394 | with_egl = ( |
| 395 | not ['darwin', 'windows'].contains(host_machine.system()) and |
Eric Engestrom | d321446 | 2018-05-14 16:40:47 +0100 | [diff] [blame] | 396 | with_dri and with_shared_glapi and _platforms.length() != 0 |
Dylan Baker | b852170 | 2018-10-01 12:40:34 -0700 | [diff] [blame] | 397 | ) |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 398 | elif _egl == 'enabled' |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 399 | if not with_dri |
| 400 | error('EGL requires dri') |
| 401 | elif not with_shared_glapi |
| 402 | error('EGL requires shared-glapi') |
Eric Engestrom | d321446 | 2018-05-14 16:40:47 +0100 | [diff] [blame] | 403 | elif _platforms.length() == 0 |
Emil Velikov | 4f2b73d | 2018-02-23 19:32:01 +0000 | [diff] [blame] | 404 | error('No platforms specified, consider -Dplatforms=drm,x11,surfaceless at least') |
Dylan Baker | f74cf04 | 2018-02-28 10:13:38 -0800 | [diff] [blame] | 405 | elif not ['disabled', 'dri'].contains(with_glx) |
| 406 | error('EGL requires dri, but a GLX is being built without dri') |
Dylan Baker | b852170 | 2018-10-01 12:40:34 -0700 | [diff] [blame] | 407 | elif ['darwin', 'windows'].contains(host_machine.system()) |
| 408 | error('EGL is not available on Windows or MacOS') |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 409 | endif |
| 410 | with_egl = true |
| 411 | else |
| 412 | with_egl = false |
| 413 | endif |
| 414 | |
Bas Nieuwenhuizen | d1c0483 | 2019-06-19 15:16:51 +0200 | [diff] [blame] | 415 | if with_egl and not (with_platform_drm or with_platform_surfaceless or with_platform_android) |
Dylan Baker | 43b0e5f | 2017-10-26 15:45:40 -0700 | [diff] [blame] | 416 | if with_gallium_radeonsi |
Bas Nieuwenhuizen | d1c0483 | 2019-06-19 15:16:51 +0200 | [diff] [blame] | 417 | error('RadeonSI requires the drm, surfaceless or android platform when using EGL') |
Dylan Baker | 43b0e5f | 2017-10-26 15:45:40 -0700 | [diff] [blame] | 418 | endif |
| 419 | if with_gallium_virgl |
Bas Nieuwenhuizen | d1c0483 | 2019-06-19 15:16:51 +0200 | [diff] [blame] | 420 | error('Virgl requires the drm, surfaceless or android platform when using EGL') |
Dylan Baker | 43b0e5f | 2017-10-26 15:45:40 -0700 | [diff] [blame] | 421 | endif |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 422 | endif |
| 423 | |
Bas Nieuwenhuizen | 9f37c99 | 2019-08-03 18:44:44 +0200 | [diff] [blame] | 424 | # Android uses emutls for versions <= P/28. For USE_ELF_TLS we need ELF TLS. |
Emmanuel | 708db98 | 2020-01-24 22:31:47 +0100 | [diff] [blame] | 425 | if not ['windows', 'freebsd'].contains(host_machine.system()) and (not with_platform_android or get_option('platform-sdk-version') >= 29) |
Bas Nieuwenhuizen | 9f37c99 | 2019-08-03 18:44:44 +0200 | [diff] [blame] | 426 | pre_args += '-DUSE_ELF_TLS' |
Bas Nieuwenhuizen | d7ca1ef | 2019-08-03 18:13:52 +0200 | [diff] [blame] | 427 | endif |
| 428 | |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 429 | if with_glx != 'disabled' |
Dylan Baker | 8d3b121 | 2017-10-18 15:47:11 -0700 | [diff] [blame] | 430 | if not (with_platform_x11 and with_any_opengl) |
Emil Velikov | 728d1da | 2018-02-23 19:32:02 +0000 | [diff] [blame] | 431 | error('Cannot build GLX support without X11 platform support and at least one OpenGL API') |
Dylan Baker | fafd20f | 2019-09-25 23:25:27 +0000 | [diff] [blame] | 432 | elif with_glx == 'gallium-xlib' |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 433 | if not with_gallium |
| 434 | error('Gallium-xlib based GLX requires at least one gallium driver') |
Dylan Baker | ad9c2f5 | 2017-11-02 13:36:44 -0700 | [diff] [blame] | 435 | elif not with_gallium_softpipe |
| 436 | error('Gallium-xlib based GLX requires softpipe or llvmpipe.') |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 437 | elif with_dri |
| 438 | error('gallium-xlib conflicts with any dri driver') |
| 439 | endif |
Dylan Baker | fafd20f | 2019-09-25 23:25:27 +0000 | [diff] [blame] | 440 | elif with_glx == 'xlib' |
Dylan Baker | 118a7f0 | 2017-11-01 17:42:41 -0700 | [diff] [blame] | 441 | if with_dri |
| 442 | error('xlib conflicts with any dri driver') |
| 443 | endif |
Emil Velikov | 63b95fb | 2018-02-23 19:32:03 +0000 | [diff] [blame] | 444 | elif with_glx == 'dri' |
Dylan Baker | 7cf50af | 2019-07-01 10:04:03 -0700 | [diff] [blame] | 445 | if not with_shared_glapi |
Emil Velikov | 63b95fb | 2018-02-23 19:32:03 +0000 | [diff] [blame] | 446 | error('dri based GLX requires shared-glapi') |
| 447 | endif |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 448 | endif |
| 449 | endif |
| 450 | |
| 451 | with_glvnd = get_option('glvnd') |
Dylan Baker | 8a36f02 | 2017-11-01 10:24:10 -0700 | [diff] [blame] | 452 | if with_glvnd |
Dylan Baker | 3047199 | 2018-04-18 13:19:20 -0700 | [diff] [blame] | 453 | if with_platform_windows |
| 454 | error('glvnd cannot be used on Windows') |
| 455 | elif with_glx == 'xlib' or with_glx == 'gallium-xlib' |
Dylan Baker | 8a36f02 | 2017-11-01 10:24:10 -0700 | [diff] [blame] | 456 | error('Cannot build glvnd support for GLX that is not DRI based.') |
| 457 | elif with_glx == 'disabled' and not with_egl |
| 458 | error('glvnd requires DRI based GLX and/or EGL') |
| 459 | endif |
Benjamin Gordon | b30aad5 | 2018-06-13 16:17:32 -0600 | [diff] [blame] | 460 | if get_option('egl-lib-suffix') != '' |
| 461 | error('''EGL lib suffix can't be used with libglvnd''') |
| 462 | endif |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 463 | endif |
| 464 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 465 | if with_vulkan_icd_dir == '' |
| 466 | with_vulkan_icd_dir = join_paths(get_option('datadir'), 'vulkan/icd.d') |
| 467 | endif |
| 468 | |
Samuel Thibault | 2fd8510 | 2019-12-28 22:51:39 +0100 | [diff] [blame] | 469 | # GNU/Hurd includes egl_dri2, without drm. |
Eric Engestrom | ad862c3 | 2019-03-05 12:32:13 +0000 | [diff] [blame] | 470 | with_dri2 = (with_dri or with_any_vk) and (with_dri_platform == 'drm' or |
| 471 | host_machine.system() == 'gnu') |
Eric Engestrom | 248c593 | 2018-02-23 17:08:45 +0000 | [diff] [blame] | 472 | _dri3 = get_option('dri3') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 473 | if _dri3 == 'true' |
| 474 | _dri3 = 'enabled' |
| 475 | warning('dri3 option "true" deprecated, please use "enabled" instead.') |
| 476 | elif _dri3 == 'false' |
| 477 | _dri3 = 'disabled' |
| 478 | warning('dri3 option "false" deprecated, please use "disabled" instead.') |
| 479 | endif |
Eric Engestrom | 248c593 | 2018-02-23 17:08:45 +0000 | [diff] [blame] | 480 | if _dri3 == 'auto' |
Eric Engestrom | 57b0ccd | 2017-12-07 16:04:14 +0000 | [diff] [blame] | 481 | with_dri3 = system_has_kms_drm and with_dri2 |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 482 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 483 | with_dri3 = _dri3 == 'enabled' |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 484 | endif |
| 485 | |
| 486 | if with_any_vk and (with_platform_x11 and not with_dri3) |
| 487 | error('Vulkan drivers require dri3 for X11 support') |
| 488 | endif |
Emil Velikov | 9d10581 | 2018-12-13 03:54:03 +0000 | [diff] [blame] | 489 | if with_dri |
Dylan Baker | 431e9ab | 2019-01-15 11:55:36 -0800 | [diff] [blame] | 490 | if with_glx == 'disabled' and not with_egl and not with_gbm and with_osmesa != 'classic' |
| 491 | error('building dri drivers require at least one windowing system or classic osmesa') |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 492 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 493 | endif |
| 494 | |
Dylan Baker | 68076b8 | 2017-10-30 14:04:21 -0700 | [diff] [blame] | 495 | _vdpau = get_option('gallium-vdpau') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 496 | if _vdpau == 'true' |
| 497 | _vdpau = 'enabled' |
| 498 | warning('gallium-vdpau option "true" deprecated, please use "enabled" instead.') |
| 499 | elif _vdpau == 'false' |
| 500 | _vdpau = 'disabled' |
| 501 | warning('gallium-vdpau option "false" deprecated, please use "disabled" instead.') |
| 502 | endif |
Eric Engestrom | 992af0a | 2017-12-07 16:02:02 +0000 | [diff] [blame] | 503 | if not system_has_kms_drm |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 504 | if _vdpau == 'enabled' |
Eric Engestrom | 992af0a | 2017-12-07 16:02:02 +0000 | [diff] [blame] | 505 | error('VDPAU state tracker can only be build on unix-like OSes.') |
Dylan Baker | 68076b8 | 2017-10-30 14:04:21 -0700 | [diff] [blame] | 506 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 507 | _vdpau = 'disabled' |
Dylan Baker | 68076b8 | 2017-10-30 14:04:21 -0700 | [diff] [blame] | 508 | endif |
Eric Engestrom | 992af0a | 2017-12-07 16:02:02 +0000 | [diff] [blame] | 509 | elif not with_platform_x11 |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 510 | if _vdpau == 'enabled' |
Dylan Baker | 68076b8 | 2017-10-30 14:04:21 -0700 | [diff] [blame] | 511 | error('VDPAU state tracker requires X11 support.') |
Eric Engestrom | 992af0a | 2017-12-07 16:02:02 +0000 | [diff] [blame] | 512 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 513 | _vdpau = 'disabled' |
Dylan Baker | 68076b8 | 2017-10-30 14:04:21 -0700 | [diff] [blame] | 514 | endif |
Eric Engestrom | 992af0a | 2017-12-07 16:02:02 +0000 | [diff] [blame] | 515 | elif not (with_gallium_r300 or with_gallium_r600 or with_gallium_radeonsi or |
| 516 | with_gallium_nouveau) |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 517 | if _vdpau == 'enabled' |
Eric Engestrom | 992af0a | 2017-12-07 16:02:02 +0000 | [diff] [blame] | 518 | error('VDPAU state tracker requires at least one of the following gallium drivers: r300, r600, radeonsi, nouveau.') |
| 519 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 520 | _vdpau = 'disabled' |
Eric Engestrom | 992af0a | 2017-12-07 16:02:02 +0000 | [diff] [blame] | 521 | endif |
Dylan Baker | 68076b8 | 2017-10-30 14:04:21 -0700 | [diff] [blame] | 522 | endif |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 523 | dep_vdpau = null_dep |
Dylan Baker | d9a8008 | 2018-06-21 08:28:36 -0700 | [diff] [blame] | 524 | with_gallium_vdpau = false |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 525 | if _vdpau != 'disabled' |
| 526 | dep_vdpau = dependency('vdpau', version : '>= 1.1', required : _vdpau == 'enabled') |
Dylan Baker | d9a8008 | 2018-06-21 08:28:36 -0700 | [diff] [blame] | 527 | if dep_vdpau.found() |
Quentin Glidic | 00f5ea9 | 2020-04-23 10:47:05 +0200 | [diff] [blame] | 528 | dep_vdpau = dep_vdpau.partial_dependency(compile_args : true) |
Dylan Baker | d9a8008 | 2018-06-21 08:28:36 -0700 | [diff] [blame] | 529 | with_gallium_vdpau = true |
| 530 | endif |
Dylan Baker | 68076b8 | 2017-10-30 14:04:21 -0700 | [diff] [blame] | 531 | endif |
| 532 | |
| 533 | if with_gallium_vdpau |
| 534 | pre_args += '-DHAVE_ST_VDPAU' |
| 535 | endif |
| 536 | vdpau_drivers_path = get_option('vdpau-libs-path') |
| 537 | if vdpau_drivers_path == '' |
| 538 | vdpau_drivers_path = join_paths(get_option('libdir'), 'vdpau') |
| 539 | endif |
| 540 | |
Erik Faye-Lund | 8d46e35 | 2018-08-31 16:50:20 +0200 | [diff] [blame] | 541 | if with_gallium_zink |
| 542 | dep_vulkan = dependency('vulkan') |
| 543 | endif |
| 544 | |
Dylan Baker | 22a817a | 2017-10-30 14:32:30 -0700 | [diff] [blame] | 545 | _xvmc = get_option('gallium-xvmc') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 546 | if _xvmc == 'true' |
| 547 | _xvmc = 'enabled' |
| 548 | warning('gallium-xvmc option "true" deprecated, please use "enabled" instead.') |
| 549 | elif _xvmc == 'false' |
| 550 | _xvmc = 'disabled' |
| 551 | warning('gallium-xvmc option "false" deprecated, please use "disabled" instead.') |
| 552 | endif |
Eric Engestrom | 724916c | 2017-12-07 16:02:29 +0000 | [diff] [blame] | 553 | if not system_has_kms_drm |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 554 | if _xvmc == 'enabled' |
Eric Engestrom | 724916c | 2017-12-07 16:02:29 +0000 | [diff] [blame] | 555 | error('XVMC state tracker can only be build on unix-like OSes.') |
Dylan Baker | 22a817a | 2017-10-30 14:32:30 -0700 | [diff] [blame] | 556 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 557 | _xvmc = 'disabled' |
Dylan Baker | 22a817a | 2017-10-30 14:32:30 -0700 | [diff] [blame] | 558 | endif |
Eric Engestrom | 724916c | 2017-12-07 16:02:29 +0000 | [diff] [blame] | 559 | elif not with_platform_x11 |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 560 | if _xvmc == 'enabled' |
Dylan Baker | 22a817a | 2017-10-30 14:32:30 -0700 | [diff] [blame] | 561 | error('XVMC state tracker requires X11 support.') |
Eric Engestrom | 724916c | 2017-12-07 16:02:29 +0000 | [diff] [blame] | 562 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 563 | _xvmc = 'disabled' |
Dylan Baker | 22a817a | 2017-10-30 14:32:30 -0700 | [diff] [blame] | 564 | endif |
Eric Engestrom | 724916c | 2017-12-07 16:02:29 +0000 | [diff] [blame] | 565 | elif not (with_gallium_r600 or with_gallium_nouveau) |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 566 | if _xvmc == 'enabled' |
Eric Engestrom | 724916c | 2017-12-07 16:02:29 +0000 | [diff] [blame] | 567 | error('XVMC state tracker requires at least one of the following gallium drivers: r600, nouveau.') |
| 568 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 569 | _xvmc = 'disabled' |
Eric Engestrom | 724916c | 2017-12-07 16:02:29 +0000 | [diff] [blame] | 570 | endif |
Dylan Baker | 22a817a | 2017-10-30 14:32:30 -0700 | [diff] [blame] | 571 | endif |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 572 | dep_xvmc = null_dep |
Dylan Baker | e456a05 | 2019-09-26 15:42:59 -0700 | [diff] [blame] | 573 | dep_xv = null_dep |
Dylan Baker | a6943bb | 2018-06-21 08:34:05 -0700 | [diff] [blame] | 574 | with_gallium_xvmc = false |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 575 | if _xvmc != 'disabled' |
| 576 | dep_xvmc = dependency('xvmc', version : '>= 1.0.6', required : _xvmc == 'enabled') |
| 577 | dep_xv = dependency('xv', required : _xvmc == 'enabled') |
Dylan Baker | e456a05 | 2019-09-26 15:42:59 -0700 | [diff] [blame] | 578 | with_gallium_xvmc = dep_xvmc.found() and dep_xv.found() |
Dylan Baker | 22a817a | 2017-10-30 14:32:30 -0700 | [diff] [blame] | 579 | endif |
| 580 | |
| 581 | xvmc_drivers_path = get_option('xvmc-libs-path') |
| 582 | if xvmc_drivers_path == '' |
| 583 | xvmc_drivers_path = get_option('libdir') |
| 584 | endif |
| 585 | |
Dylan Baker | 1d36dc6 | 2017-10-30 15:23:06 -0700 | [diff] [blame] | 586 | _omx = get_option('gallium-omx') |
Eric Engestrom | 86168ed | 2017-12-07 16:03:04 +0000 | [diff] [blame] | 587 | if not system_has_kms_drm |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 588 | if ['auto', 'disabled'].contains(_omx) |
Gurkirpal Singh | bb5e27f | 2018-01-20 05:12:06 +0530 | [diff] [blame] | 589 | _omx = 'disabled' |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 590 | else |
| 591 | error('OMX state tracker can only be built on unix-like OSes.') |
Dylan Baker | 1d36dc6 | 2017-10-30 15:23:06 -0700 | [diff] [blame] | 592 | endif |
Eric Engestrom | 86168ed | 2017-12-07 16:03:04 +0000 | [diff] [blame] | 593 | elif not (with_gallium_r600 or with_gallium_radeonsi or with_gallium_nouveau) |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 594 | if ['auto', 'disabled'].contains(_omx) |
Gurkirpal Singh | bb5e27f | 2018-01-20 05:12:06 +0530 | [diff] [blame] | 595 | _omx = 'disabled' |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 596 | else |
| 597 | error('OMX state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau.') |
Eric Engestrom | 86168ed | 2017-12-07 16:03:04 +0000 | [diff] [blame] | 598 | endif |
Eric Engestrom | 86168ed | 2017-12-07 16:03:04 +0000 | [diff] [blame] | 599 | endif |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 600 | with_gallium_omx = _omx |
| 601 | dep_omx = null_dep |
Gurkirpal Singh | e2afa15 | 2018-01-20 05:37:53 +0530 | [diff] [blame] | 602 | dep_omx_other = [] |
Mathias Fröhlich | 795b465 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 603 | if ['auto', 'bellagio'].contains(_omx) |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 604 | dep_omx = dependency( |
Mathias Fröhlich | 795b465 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 605 | 'libomxil-bellagio', required : _omx == 'bellagio' |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 606 | ) |
| 607 | if dep_omx.found() |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 608 | with_gallium_omx = 'bellagio' |
| 609 | endif |
| 610 | endif |
Mathias Fröhlich | 795b465 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 611 | if ['auto', 'tizonia'].contains(_omx) |
| 612 | if with_dri and with_egl |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 613 | dep_omx = dependency( |
| 614 | 'libtizonia', version : '>= 0.10.0', |
Mathias Fröhlich | 795b465 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 615 | required : _omx == 'tizonia', |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 616 | ) |
| 617 | dep_omx_other = [ |
Mathias Fröhlich | 795b465 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 618 | dependency('libtizplatform', required : _omx == 'tizonia'), |
| 619 | dependency('tizilheaders', required : _omx == 'tizonia'), |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 620 | ] |
| 621 | if dep_omx.found() and dep_omx_other[0].found() and dep_omx_other[1].found() |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 622 | with_gallium_omx = 'tizonia' |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 623 | endif |
Mathias Fröhlich | 795b465 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 624 | elif _omx == 'tizonia' |
| 625 | error('OMX-Tizonia state tracker requires dri and egl') |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 626 | endif |
Dylan Baker | 1d36dc6 | 2017-10-30 15:23:06 -0700 | [diff] [blame] | 627 | endif |
Mathias Fröhlich | 795b465 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 628 | if _omx == 'auto' |
| 629 | with_gallium_omx = 'disabled' |
| 630 | else |
| 631 | with_gallium_omx = _omx |
| 632 | endif |
Dylan Baker | 1d36dc6 | 2017-10-30 15:23:06 -0700 | [diff] [blame] | 633 | |
Mathias Fröhlich | 880c171 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 634 | pre_args += [ |
| 635 | '-DENABLE_ST_OMX_BELLAGIO=' + (with_gallium_omx == 'bellagio' ? '1' : '0'), |
| 636 | '-DENABLE_ST_OMX_TIZONIA=' + (with_gallium_omx == 'tizonia' ? '1' : '0'), |
| 637 | ] |
| 638 | |
| 639 | |
Dylan Baker | 1d36dc6 | 2017-10-30 15:23:06 -0700 | [diff] [blame] | 640 | omx_drivers_path = get_option('omx-libs-path') |
Mathias Fröhlich | 880c171 | 2018-03-16 06:34:35 +0100 | [diff] [blame] | 641 | |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 642 | if with_gallium_omx != 'disabled' |
Dylan Baker | 1d36dc6 | 2017-10-30 15:23:06 -0700 | [diff] [blame] | 643 | # Figure out where to put the omx driver. |
| 644 | # FIXME: this could all be vastly simplified by adding a 'defined_variable' |
| 645 | # argument to meson's get_pkgconfig_variable method. |
| 646 | if omx_drivers_path == '' |
| 647 | _omx_libdir = dep_omx.get_pkgconfig_variable('libdir') |
| 648 | _omx_drivers_dir = dep_omx.get_pkgconfig_variable('pluginsdir') |
| 649 | if _omx_libdir == get_option('libdir') |
| 650 | omx_drivers_path = _omx_drivers_dir |
| 651 | else |
| 652 | _omx_base_dir = [] |
| 653 | # This will fail on windows. Does OMX run on windows? |
| 654 | _omx_libdir = _omx_libdir.split('/') |
| 655 | _omx_drivers_dir = _omx_drivers_dir.split('/') |
| 656 | foreach o : _omx_drivers_dir |
| 657 | if not _omx_libdir.contains(o) |
| 658 | _omx_base_dir += o |
| 659 | endif |
| 660 | endforeach |
| 661 | omx_drivers_path = join_paths(get_option('libdir'), _omx_base_dir) |
| 662 | endif |
| 663 | endif |
| 664 | endif |
Dylan Baker | 1d36dc6 | 2017-10-30 15:23:06 -0700 | [diff] [blame] | 665 | |
Dylan Baker | 5a785d5 | 2017-10-30 15:49:37 -0700 | [diff] [blame] | 666 | _va = get_option('gallium-va') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 667 | if _va == 'true' |
| 668 | _va = 'enabled' |
| 669 | warning('gallium-va option "true" deprecated, please use "enabled" instead.') |
| 670 | elif _va == 'false' |
| 671 | _va = 'disabled' |
| 672 | warning('gallium-va option "false" deprecated, please use "disabled" instead.') |
| 673 | endif |
Eric Engestrom | fa5d616 | 2017-12-07 16:03:22 +0000 | [diff] [blame] | 674 | if not system_has_kms_drm |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 675 | if _va == 'enabled' |
Eric Engestrom | fa5d616 | 2017-12-07 16:03:22 +0000 | [diff] [blame] | 676 | error('VA state tracker can only be built on unix-like OSes.') |
Dylan Baker | 5a785d5 | 2017-10-30 15:49:37 -0700 | [diff] [blame] | 677 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 678 | _va = 'disabled' |
Dylan Baker | 5a785d5 | 2017-10-30 15:49:37 -0700 | [diff] [blame] | 679 | endif |
Eric Engestrom | fa5d616 | 2017-12-07 16:03:22 +0000 | [diff] [blame] | 680 | elif not (with_gallium_r600 or with_gallium_radeonsi or with_gallium_nouveau) |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 681 | if _va == 'enabled' |
Eric Engestrom | fa5d616 | 2017-12-07 16:03:22 +0000 | [diff] [blame] | 682 | error('VA state tracker requires at least one of the following gallium drivers: r600, radeonsi, nouveau.') |
| 683 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 684 | _va = 'disabled' |
Eric Engestrom | fa5d616 | 2017-12-07 16:03:22 +0000 | [diff] [blame] | 685 | endif |
Dylan Baker | 5a785d5 | 2017-10-30 15:49:37 -0700 | [diff] [blame] | 686 | endif |
Dylan Baker | 94cf397 | 2018-06-21 08:35:03 -0700 | [diff] [blame] | 687 | with_gallium_va = false |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 688 | dep_va = null_dep |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 689 | if _va != 'disabled' |
| 690 | dep_va = dependency('libva', version : '>= 0.38.0', required : _va == 'enabled') |
Dylan Baker | 94cf397 | 2018-06-21 08:35:03 -0700 | [diff] [blame] | 691 | if dep_va.found() |
Quentin Glidic | 00f5ea9 | 2020-04-23 10:47:05 +0200 | [diff] [blame] | 692 | dep_va_headers = dep_va.partial_dependency(compile_args : true) |
Dylan Baker | 94cf397 | 2018-06-21 08:35:03 -0700 | [diff] [blame] | 693 | with_gallium_va = true |
| 694 | endif |
Dylan Baker | 5a785d5 | 2017-10-30 15:49:37 -0700 | [diff] [blame] | 695 | endif |
| 696 | |
| 697 | va_drivers_path = get_option('va-libs-path') |
| 698 | if va_drivers_path == '' |
| 699 | va_drivers_path = join_paths(get_option('libdir'), 'dri') |
| 700 | endif |
| 701 | |
Dylan Baker | 0ba909f | 2017-10-30 17:40:30 -0700 | [diff] [blame] | 702 | _xa = get_option('gallium-xa') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 703 | if _xa == 'true' |
| 704 | _xa = 'enabled' |
| 705 | warning('gallium-xa option "true" deprecated, please use "enabled" instead.') |
| 706 | elif _xa == 'false' |
| 707 | _xa = 'disabled' |
| 708 | warning('gallium-xa option "false" deprecated, please use "disabled" instead.') |
| 709 | endif |
Eric Engestrom | 2f0db33 | 2017-12-07 16:03:40 +0000 | [diff] [blame] | 710 | if not system_has_kms_drm |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 711 | if _xa == 'enabled' |
Eric Engestrom | 2f0db33 | 2017-12-07 16:03:40 +0000 | [diff] [blame] | 712 | error('XA state tracker can only be built on unix-like OSes.') |
Dylan Baker | 0ba909f | 2017-10-30 17:40:30 -0700 | [diff] [blame] | 713 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 714 | _xa = 'disabled' |
Dylan Baker | 0ba909f | 2017-10-30 17:40:30 -0700 | [diff] [blame] | 715 | endif |
Eric Engestrom | 2f0db33 | 2017-12-07 16:03:40 +0000 | [diff] [blame] | 716 | elif not (with_gallium_nouveau or with_gallium_freedreno or with_gallium_i915 |
| 717 | or with_gallium_svga) |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 718 | if _xa == 'enabled' |
Dylan Baker | 0ba909f | 2017-10-30 17:40:30 -0700 | [diff] [blame] | 719 | error('XA state tracker requires at least one of the following gallium drivers: nouveau, freedreno, i915, svga.') |
Eric Engestrom | 2f0db33 | 2017-12-07 16:03:40 +0000 | [diff] [blame] | 720 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 721 | _xa = 'disabled' |
Dylan Baker | 0ba909f | 2017-10-30 17:40:30 -0700 | [diff] [blame] | 722 | endif |
Dylan Baker | 0ba909f | 2017-10-30 17:40:30 -0700 | [diff] [blame] | 723 | endif |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 724 | with_gallium_xa = _xa != 'disabled' |
Dylan Baker | 0ba909f | 2017-10-30 17:40:30 -0700 | [diff] [blame] | 725 | |
Dylan Baker | 6b4c704 | 2017-11-13 17:58:51 -0800 | [diff] [blame] | 726 | d3d_drivers_path = get_option('d3d-drivers-path') |
| 727 | if d3d_drivers_path == '' |
Sergii Romantsov | dcc4866 | 2019-02-22 11:23:08 +0200 | [diff] [blame] | 728 | d3d_drivers_path = join_paths(get_option('prefix'), get_option('libdir'), 'd3d') |
Dylan Baker | 6b4c704 | 2017-11-13 17:58:51 -0800 | [diff] [blame] | 729 | endif |
| 730 | |
| 731 | with_gallium_st_nine = get_option('gallium-nine') |
| 732 | if with_gallium_st_nine |
| 733 | if not with_gallium_softpipe |
| 734 | error('The nine state tracker requires gallium softpipe/llvmpipe.') |
| 735 | elif not (with_gallium_radeonsi or with_gallium_nouveau or with_gallium_r600 |
Andre Heider | f89a578 | 2019-02-06 02:26:45 +0100 | [diff] [blame] | 736 | or with_gallium_r300 or with_gallium_svga or with_gallium_i915 |
| 737 | or with_gallium_iris) |
Vinson Lee | 84f39e5 | 2018-12-16 16:35:00 -0800 | [diff] [blame] | 738 | error('The nine state tracker requires at least one non-swrast gallium driver.') |
Dylan Baker | 6b4c704 | 2017-11-13 17:58:51 -0800 | [diff] [blame] | 739 | endif |
| 740 | if not with_dri3 |
| 741 | error('Using nine with wine requires dri3') |
| 742 | endif |
| 743 | endif |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 744 | _power8 = get_option('power8') |
| 745 | if _power8 == 'true' |
| 746 | _power8 = 'enabled' |
| 747 | warning('power8 option "true" deprecated, please use "enabled" instead.') |
| 748 | elif _power8 == 'disabled' |
| 749 | _power8 = 'disabled' |
| 750 | warning('power8 option "false" deprecated, please use "disabled" instead.') |
| 751 | endif |
| 752 | if _power8 != 'disabled' |
Dylan Baker | e430a03 | 2018-12-04 09:28:10 -0800 | [diff] [blame] | 753 | # on old versions of meson the cpu family would return as ppc64le on little |
| 754 | # endian power8, this was changed in 0.48 such that the family would always |
Eric Engestrom | 86628ed | 2019-03-07 14:45:26 +0000 | [diff] [blame] | 755 | # be ppc64 regardless of endianness, and then the machine.endian() value |
Dylan Baker | e430a03 | 2018-12-04 09:28:10 -0800 | [diff] [blame] | 756 | # should be checked. Since we support versions < 0.48 we need to use |
| 757 | # startswith. |
| 758 | if host_machine.cpu_family().startswith('ppc64') and host_machine.endian() == 'little' |
Dylan Baker | 34bbb24 | 2018-06-07 11:13:34 -0700 | [diff] [blame] | 759 | if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.8') |
| 760 | error('Altivec is not supported with gcc version < 4.8.') |
| 761 | endif |
| 762 | if cc.compiles(''' |
| 763 | #include <altivec.h> |
| 764 | int main() { |
| 765 | vector unsigned char r; |
| 766 | vector unsigned int v = vec_splat_u32 (1); |
| 767 | r = __builtin_vec_vgbbd ((vector unsigned char) v); |
| 768 | return 0; |
| 769 | }''', |
| 770 | args : '-mpower8-vector', |
| 771 | name : 'POWER8 intrinsics') |
| 772 | pre_args += ['-D_ARCH_PWR8', '-mpower8-vector'] |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 773 | elif get_option('power8') == 'enabled' |
Dylan Baker | 34bbb24 | 2018-06-07 11:13:34 -0700 | [diff] [blame] | 774 | error('POWER8 intrinsic support required but not found.') |
| 775 | endif |
| 776 | endif |
| 777 | endif |
| 778 | |
Dylan Baker | 42ea063 | 2017-12-08 15:26:00 -0800 | [diff] [blame] | 779 | _opencl = get_option('gallium-opencl') |
Dylan Baker | 21bca27 | 2018-01-08 17:31:55 -0800 | [diff] [blame] | 780 | if _opencl != 'disabled' |
Dylan Baker | 42ea063 | 2017-12-08 15:26:00 -0800 | [diff] [blame] | 781 | if not with_gallium |
| 782 | error('OpenCL Clover implementation requires at least one gallium driver.') |
| 783 | endif |
| 784 | |
Dylan Baker | 42ea063 | 2017-12-08 15:26:00 -0800 | [diff] [blame] | 785 | dep_clc = dependency('libclc') |
| 786 | with_gallium_opencl = true |
| 787 | with_opencl_icd = _opencl == 'icd' |
Dylan Baker | 133a5b8 | 2018-12-04 13:52:19 -0800 | [diff] [blame] | 788 | |
Pierre Moreau | 866f6f1 | 2018-01-21 19:10:58 +0100 | [diff] [blame] | 789 | with_opencl_spirv = get_option('opencl-spirv') |
| 790 | if with_opencl_spirv |
| 791 | dep_spirv_tools = dependency('SPIRV-Tools', required : true, version : '>= 2018.0') |
| 792 | # LLVMSPIRVLib is available at https://github.com/KhronosGroup/SPIRV-LLVM-Translator |
| 793 | dep_llvmspirvlib = dependency('LLVMSPIRVLib', required : true, version : '>= 0.2.1') |
| 794 | else |
| 795 | dep_spirv_tools = null_dep |
| 796 | dep_llvmspirvlib = null_dep |
| 797 | endif |
Dylan Baker | 42ea063 | 2017-12-08 15:26:00 -0800 | [diff] [blame] | 798 | else |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 799 | dep_clc = null_dep |
Pierre Moreau | 866f6f1 | 2018-01-21 19:10:58 +0100 | [diff] [blame] | 800 | dep_spirv_tools = null_dep |
| 801 | dep_llvmspirvlib = null_dep |
Dylan Baker | 42ea063 | 2017-12-08 15:26:00 -0800 | [diff] [blame] | 802 | with_gallium_opencl = false |
Pierre Moreau | 0b736f7 | 2019-01-09 23:03:45 +0100 | [diff] [blame] | 803 | with_opencl_icd = false |
Pierre Moreau | 866f6f1 | 2018-01-21 19:10:58 +0100 | [diff] [blame] | 804 | with_opencl_spirv = false |
Dylan Baker | 42ea063 | 2017-12-08 15:26:00 -0800 | [diff] [blame] | 805 | endif |
| 806 | |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 807 | gl_pkgconfig_c_flags = [] |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 808 | if with_platform_x11 |
Dylan Baker | f74cf04 | 2018-02-28 10:13:38 -0800 | [diff] [blame] | 809 | if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm') |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 810 | pre_args += '-DHAVE_X11_PLATFORM' |
| 811 | endif |
Dylan Baker | ad9c2f5 | 2017-11-02 13:36:44 -0700 | [diff] [blame] | 812 | if with_glx == 'xlib' or with_glx == 'gallium-xlib' |
Dylan Baker | 118a7f0 | 2017-11-01 17:42:41 -0700 | [diff] [blame] | 813 | pre_args += '-DUSE_XSHM' |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 814 | else |
| 815 | pre_args += '-DGLX_INDIRECT_RENDERING' |
| 816 | if with_glx_direct |
| 817 | pre_args += '-DGLX_DIRECT_RENDERING' |
| 818 | endif |
| 819 | if with_dri_platform == 'drm' |
| 820 | pre_args += '-DGLX_USE_DRM' |
Dylan Baker | 569628d | 2017-10-27 21:08:07 -0700 | [diff] [blame] | 821 | elif with_dri_platform == 'apple' |
| 822 | pre_args += '-DGLX_USE_APPLEGL' |
Jon Turney | 9cdd41b | 2017-11-23 13:40:06 +0000 | [diff] [blame] | 823 | elif with_dri_platform == 'windows' |
| 824 | pre_args += '-DGLX_USE_WINDOWSGL' |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 825 | endif |
| 826 | endif |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 827 | else |
Eric Engestrom | 6202a13 | 2019-09-04 13:19:32 +0100 | [diff] [blame] | 828 | pre_args += '-DEGL_NO_X11' |
| 829 | gl_pkgconfig_c_flags += '-DEGL_NO_X11' |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 830 | endif |
| 831 | if with_platform_drm |
| 832 | if with_egl and not with_gbm |
| 833 | error('EGL drm platform requires gbm') |
| 834 | endif |
| 835 | pre_args += '-DHAVE_DRM_PLATFORM' |
| 836 | endif |
| 837 | if with_platform_surfaceless |
| 838 | pre_args += '-DHAVE_SURFACELESS_PLATFORM' |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 839 | endif |
Eric Engestrom | c5ec155 | 2017-10-24 16:08:15 +0100 | [diff] [blame] | 840 | if with_platform_android |
| 841 | dep_android = [ |
| 842 | dependency('cutils'), |
| 843 | dependency('hardware'), |
| 844 | dependency('sync'), |
| 845 | ] |
Dominik Behr | c682ea5 | 2019-10-21 18:13:08 -0700 | [diff] [blame] | 846 | if with_gallium |
| 847 | dep_android += dependency('backtrace') |
| 848 | endif |
Gurchetan Singh | b070861 | 2019-03-15 10:08:45 -0700 | [diff] [blame] | 849 | if get_option('platform-sdk-version') >= 26 |
| 850 | dep_android += dependency('nativewindow') |
| 851 | endif |
Eric Engestrom | c5ec155 | 2017-10-24 16:08:15 +0100 | [diff] [blame] | 852 | pre_args += '-DHAVE_ANDROID_PLATFORM' |
| 853 | endif |
Alexander von Gluck IV | 834d221 | 2018-02-16 16:56:31 -0600 | [diff] [blame] | 854 | if with_platform_haiku |
| 855 | pre_args += '-DHAVE_HAIKU_PLATFORM' |
| 856 | endif |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 857 | |
Dylan Baker | c1a290b | 2020-04-24 10:58:53 -0700 | [diff] [blame] | 858 | prog_python = import('python').find_installation('python3') |
Dylan Baker | 52194ae | 2018-08-14 09:31:41 -0700 | [diff] [blame] | 859 | has_mako = run_command( |
| 860 | prog_python, '-c', |
| 861 | ''' |
| 862 | from distutils.version import StrictVersion |
| 863 | import mako |
| 864 | assert StrictVersion(mako.__version__) > StrictVersion("0.8.0") |
| 865 | ''') |
Dylan Baker | 9342a7d | 2017-09-28 10:48:30 -0700 | [diff] [blame] | 866 | if has_mako.returncode() != 0 |
Dylan Baker | 52194ae | 2018-08-14 09:31:41 -0700 | [diff] [blame] | 867 | error('Python (3.x) mako module >= 0.8.0 required to build mesa.') |
Dylan Baker | 9342a7d | 2017-09-28 10:48:30 -0700 | [diff] [blame] | 868 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 869 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 870 | if cc.get_id() == 'gcc' and cc.version().version_compare('< 4.4.6') |
Eric Engestrom | 1262e82 | 2017-09-29 15:25:18 +0100 | [diff] [blame] | 871 | error('When using GCC, version 4.4.6 or later is required.') |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 872 | endif |
| 873 | |
Greg V | c0dc5c1 | 2018-01-19 00:48:30 +0300 | [diff] [blame] | 874 | # Support systems without ETIME (e.g. FreeBSD) |
| 875 | if cc.get_define('ETIME', prefix : '#include <errno.h>') == '' |
| 876 | pre_args += '-DETIME=ETIMEDOUT' |
| 877 | endif |
| 878 | |
Eric Engestrom | 1e6f9ea | 2017-11-06 17:18:06 +0000 | [diff] [blame] | 879 | # Define DEBUG for debug builds only (debugoptimized is not included on this one) |
| 880 | if get_option('buildtype') == 'debug' |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 881 | pre_args += '-DDEBUG' |
| 882 | endif |
| 883 | |
Dylan Baker | f5eafc2 | 2018-04-18 13:20:28 -0700 | [diff] [blame] | 884 | with_shader_cache = false |
| 885 | _shader_cache = get_option('shader-cache') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 886 | if _shader_cache == 'true' |
| 887 | _shader_cache = 'enabled' |
| 888 | warning('shader_cache option "true" deprecated, please use "enabled" instead.') |
| 889 | elif _shader_cache == 'false' |
| 890 | _shader_cache = 'disabled' |
| 891 | warning('shader_cache option "false" deprecated, please use "disabled" instead.') |
| 892 | endif |
| 893 | if _shader_cache != 'disabled' |
Dylan Baker | f5eafc2 | 2018-04-18 13:20:28 -0700 | [diff] [blame] | 894 | if host_machine.system() == 'windows' |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 895 | if _shader_cache == 'enabled' |
Dylan Baker | f5eafc2 | 2018-04-18 13:20:28 -0700 | [diff] [blame] | 896 | error('Shader Cache does not currently work on Windows') |
| 897 | endif |
| 898 | else |
| 899 | pre_args += '-DENABLE_SHADER_CACHE' |
| 900 | with_shader_cache = true |
| 901 | endif |
| 902 | endif |
Dylan Baker | 673dda8 | 2017-09-20 11:53:29 -0700 | [diff] [blame] | 903 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 904 | # Check for GCC style builtins |
| 905 | foreach b : ['bswap32', 'bswap64', 'clz', 'clzll', 'ctz', 'expect', 'ffs', |
| 906 | 'ffsll', 'popcount', 'popcountll', 'unreachable'] |
| 907 | if cc.has_function(b) |
| 908 | pre_args += '-DHAVE___BUILTIN_@0@'.format(b.to_upper()) |
| 909 | endif |
| 910 | endforeach |
| 911 | |
Dylan Baker | 673dda8 | 2017-09-20 11:53:29 -0700 | [diff] [blame] | 912 | # check for GCC __attribute__ |
Dylan Baker | 17dcd53 | 2020-04-24 12:39:27 -0700 | [diff] [blame] | 913 | _attributes = [ |
| 914 | 'const', 'flatten', 'malloc', 'pure', 'unused', 'warn_unused_result', |
| 915 | 'weak', 'format', 'packed', 'returns_nonnull', 'alias', 'noreturn', |
| 916 | ] |
| 917 | foreach a : cc.get_supported_function_attributes(_attributes) |
| 918 | pre_args += '-DHAVE_FUNC_ATTRIBUTE_@0@'.format(a.to_upper()) |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 919 | endforeach |
Dylan Baker | 17dcd53 | 2020-04-24 12:39:27 -0700 | [diff] [blame] | 920 | if cc.has_function_attribute('visibility:hidden') |
Marc Dietrich | 911ca58 | 2018-01-23 15:49:43 +0100 | [diff] [blame] | 921 | pre_args += '-DHAVE_FUNC_ATTRIBUTE_VISIBILITY' |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 922 | endif |
Connor Abbott | b878178 | 2019-03-29 15:08:17 +0100 | [diff] [blame] | 923 | if cc.compiles('__uint128_t foo(void) { return 0; }', |
| 924 | name : '__uint128_t') |
| 925 | pre_args += '-DHAVE_UINT128' |
| 926 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 927 | |
| 928 | # TODO: this is very incomplete |
Eric Engestrom | b4f508a | 2019-10-26 22:43:50 +0100 | [diff] [blame] | 929 | if ['linux', 'cygwin', 'gnu', 'freebsd', 'gnu/kfreebsd'].contains(host_machine.system()) |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 930 | pre_args += '-D_GNU_SOURCE' |
Alan Coopersmith | d8a9420 | 2019-10-07 18:46:41 -0700 | [diff] [blame] | 931 | elif host_machine.system() == 'sunos' |
| 932 | pre_args += '-D__EXTENSIONS__' |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 933 | elif host_machine.system() == 'windows' |
| 934 | pre_args += [ |
Erik Faye-Lund | 7f17a0a | 2020-04-22 17:54:38 +0200 | [diff] [blame] | 935 | '-D_WINDOWS', '-D_WIN32_WINNT=0x0601', '-DWINVER=0x0601', |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 936 | '-DPIPE_SUBSYSTEM_WINDOWS_USER', |
| 937 | '-D_USE_MATH_DEFINES', # XXX: scons doesn't use this for mingw |
| 938 | ] |
| 939 | if cc.get_id() == 'msvc' |
| 940 | pre_args += [ |
| 941 | '-DVC_EXTRALEAN', |
| 942 | '-D_CRT_SECURE_NO_WARNINGS', |
| 943 | '-D_CRT_SECURE_NO_DEPRECATE', |
| 944 | '-D_SCL_SECURE_NO_WARNINGS', |
| 945 | '-D_SCL_SECURE_NO_DEPRECATE', |
| 946 | '-D_ALLOW_KEYWORD_MACROS', |
| 947 | '-D_HAS_EXCEPTIONS=0', # Tell C++ STL to not use exceptions |
| 948 | ] |
| 949 | else |
| 950 | pre_args += ['-D__MSVCRT_VERSION__=0x0700'] |
| 951 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 952 | endif |
| 953 | |
Dylan Baker | 8e5988e | 2018-03-22 11:35:08 -0700 | [diff] [blame] | 954 | # Check for generic C arguments |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 955 | c_args = [] |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 956 | c_msvc_compat_args = [] |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 957 | no_override_init_args = [] |
| 958 | cpp_args = [] |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 959 | cpp_msvc_compat_args = [] |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 960 | if cc.get_id() == 'msvc' |
| 961 | foreach a : ['/wd4018', # signed/unsigned mismatch |
| 962 | '/wd4056', # overflow in floating-point constant arithmetic |
| 963 | '/wd4244', # conversion from 'type1' to 'type2', possible loss of data |
| 964 | '/wd4267', # 'var' : conversion from 'size_t' to 'type', possible loss of data |
| 965 | '/wd4305', # trancation from 'type1' to 'type2' |
| 966 | '/wd4351', # new behavior: elements of array 'array' will be default initialized |
| 967 | '/wd4756', # overflow in constant arithmetic |
| 968 | '/wd4800', # forcing value to bool 'true' or 'false' (performance warning) |
| 969 | '/wd4996', # disabled deprecated POSIX name warnings |
Erik Faye-Lund | 5127160 | 2020-01-14 11:56:13 +0100 | [diff] [blame] | 970 | '/wd4291', # no matching operator delete found |
| 971 | '/wd4146', # unary minus operator applied to unsigned type, result still unsigned |
Daniel Stone | 04885d6 | 2020-01-28 12:47:20 +0000 | [diff] [blame] | 972 | '/wd4200', # nonstandard extension used: zero-sized array in struct/union |
| 973 | '/wd4624', # destructor was implicitly defined as deleted [from LLVM] |
| 974 | ] |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 975 | if cc.has_argument(a) |
| 976 | c_args += a |
| 977 | endif |
| 978 | if cpp.has_argument(a) |
| 979 | cpp_args += a |
| 980 | endif |
| 981 | endforeach |
| 982 | if cc.has_argument('-Wmicrosoft-enum-value') # Clang |
| 983 | c_args += '-Wno-microsoft-enum-value' |
| 984 | cpp_args += '-Wno-microsoft-enum-value' |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 985 | endif |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 986 | else |
Dylan Baker | fe8f898 | 2019-06-27 14:52:40 -0700 | [diff] [blame] | 987 | _trial = [ |
| 988 | '-Werror=implicit-function-declaration', |
| 989 | '-Werror=missing-prototypes', |
| 990 | '-Werror=return-type', |
Eric Engestrom | 8d43e2b | 2019-09-23 17:21:20 +0100 | [diff] [blame] | 991 | '-Werror=empty-body', |
Dylan Baker | fe8f898 | 2019-06-27 14:52:40 -0700 | [diff] [blame] | 992 | '-Werror=incompatible-pointer-types', |
Bas Nieuwenhuizen | c1a1a86 | 2019-10-31 12:00:52 +0100 | [diff] [blame] | 993 | '-Werror=int-conversion', |
Timothy Arceri | e2209e8 | 2020-07-01 13:37:14 +1000 | [diff] [blame^] | 994 | '-Wimplicit-fallthrough', |
Dylan Baker | fe8f898 | 2019-06-27 14:52:40 -0700 | [diff] [blame] | 995 | '-Wno-missing-field-initializers', |
| 996 | '-Wno-format-truncation', |
| 997 | '-fno-math-errno', |
| 998 | '-fno-trapping-math', |
| 999 | '-Qunused-arguments', |
Pierre-Eric Pelloux-Prayer | 33b255e | 2020-03-05 11:00:28 +0100 | [diff] [blame] | 1000 | '-fno-common', |
Dylan Baker | fe8f898 | 2019-06-27 14:52:40 -0700 | [diff] [blame] | 1001 | ] |
| 1002 | # MinGW chokes on format specifiers and I can't get it all working |
| 1003 | if not (cc.get_id() == 'gcc' and host_machine.system() == 'windows') |
| 1004 | _trial += ['-Werror=format', '-Wformat-security'] |
| 1005 | endif |
| 1006 | foreach a : _trial |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 1007 | if cc.has_argument(a) |
| 1008 | c_args += a |
| 1009 | endif |
| 1010 | endforeach |
| 1011 | |
Dylan Baker | fe8f898 | 2019-06-27 14:52:40 -0700 | [diff] [blame] | 1012 | _trial = [ |
| 1013 | '-Werror=return-type', |
Eric Engestrom | 8d43e2b | 2019-09-23 17:21:20 +0100 | [diff] [blame] | 1014 | '-Werror=empty-body', |
Dylan Baker | fe8f898 | 2019-06-27 14:52:40 -0700 | [diff] [blame] | 1015 | '-Wno-non-virtual-dtor', |
| 1016 | '-Wno-missing-field-initializers', |
| 1017 | '-Wno-format-truncation', |
| 1018 | '-fno-math-errno', |
| 1019 | '-fno-trapping-math', |
| 1020 | '-Qunused-arguments', |
Danylo Piliaiev | 5500a2b | 2020-05-19 20:35:49 +0300 | [diff] [blame] | 1021 | # Some classes use custom new operator which zeroes memory, however |
| 1022 | # gcc does aggressive dead-store elimination which threats all writes |
| 1023 | # to the memory before the constructor as "dead stores". |
| 1024 | # For now we disable this optimization. |
| 1025 | '-flifetime-dse=1', |
Dylan Baker | fe8f898 | 2019-06-27 14:52:40 -0700 | [diff] [blame] | 1026 | ] |
| 1027 | # MinGW chokes on format specifiers and I can't get it all working |
| 1028 | if not (cc.get_id() == 'gcc' and host_machine.system() == 'windows') |
| 1029 | _trial += ['-Werror=format', '-Wformat-security'] |
| 1030 | endif |
| 1031 | foreach a : _trial |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 1032 | if cpp.has_argument(a) |
| 1033 | cpp_args += a |
| 1034 | endif |
| 1035 | endforeach |
| 1036 | |
| 1037 | foreach a : ['-Wno-override-init', '-Wno-initializer-overrides'] |
| 1038 | if cc.has_argument(a) |
| 1039 | no_override_init_args += a |
| 1040 | endif |
| 1041 | endforeach |
| 1042 | |
Dylan Baker | a24d6fb | 2019-11-21 09:11:45 -0800 | [diff] [blame] | 1043 | # Check for C and C++ arguments for MSVC compatibility. These are only used |
| 1044 | # in parts of the mesa code base that need to compile with MSVC, mainly |
| 1045 | # common code |
| 1046 | foreach a : ['-Werror=pointer-arith', '-Werror=vla', '-Werror=gnu-empty-initializer'] |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 1047 | if cc.has_argument(a) |
| 1048 | c_msvc_compat_args += a |
| 1049 | endif |
| 1050 | if cpp.has_argument(a) |
| 1051 | cpp_msvc_compat_args += a |
| 1052 | endif |
| 1053 | endforeach |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 1054 | endif |
| 1055 | |
| 1056 | # set linker arguments |
| 1057 | if host_machine.system() == 'windows' |
| 1058 | if cc.get_id() == 'msvc' |
| 1059 | add_project_link_arguments( |
| 1060 | '/fixed:no', |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 1061 | '/dynamicbase', |
| 1062 | '/nxcompat', |
| 1063 | language : ['c', 'cpp'], |
| 1064 | ) |
Erik Faye-Lund | d6b7439 | 2020-04-15 20:35:46 +0200 | [diff] [blame] | 1065 | if get_option('buildtype') != 'debug' |
| 1066 | add_project_link_arguments( |
| 1067 | '/incremental:no', |
| 1068 | language : ['c', 'cpp'], |
| 1069 | ) |
| 1070 | endif |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 1071 | else |
| 1072 | add_project_link_arguments( |
| 1073 | '-Wl,--nxcompat', |
| 1074 | '-Wl,--dynamicbase', |
| 1075 | '-static-libgcc', |
| 1076 | '-static-libstdc++', |
| 1077 | language : ['c', 'cpp'], |
| 1078 | ) |
| 1079 | endif |
| 1080 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1081 | |
Dylan Baker | d2cb0a5 | 2018-05-17 14:45:10 -0700 | [diff] [blame] | 1082 | if host_machine.cpu_family().startswith('x86') and cc.get_id() != 'msvc' |
Scott D Phillips | 0b8d38b | 2018-01-24 11:24:12 -0800 | [diff] [blame] | 1083 | pre_args += '-DUSE_SSE41' |
Dylan Baker | 84486f6 | 2017-11-15 16:09:22 -0800 | [diff] [blame] | 1084 | with_sse41 = true |
| 1085 | sse41_args = ['-msse4.1'] |
| 1086 | |
| 1087 | # GCC on x86 (not x86_64) with -msse* assumes a 16 byte aligned stack, but |
| 1088 | # that's not guaranteed |
| 1089 | if host_machine.cpu_family() == 'x86' |
| 1090 | sse41_args += '-mstackrealign' |
| 1091 | endif |
| 1092 | else |
| 1093 | with_sse41 = false |
| 1094 | sse41_args = [] |
| 1095 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1096 | |
| 1097 | # Check for GCC style atomics |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1098 | dep_atomic = null_dep |
Thierry Reding | 498faea | 2018-02-23 14:13:27 +0100 | [diff] [blame] | 1099 | |
Matt Turner | b29b5a8 | 2018-06-11 14:56:26 -0700 | [diff] [blame] | 1100 | if cc.compiles('''#include <stdint.h> |
| 1101 | int main() { |
| 1102 | struct { |
| 1103 | uint64_t *v; |
| 1104 | } x; |
Andrew Galante | 9d547a7 | 2018-06-11 15:03:36 -0700 | [diff] [blame] | 1105 | return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) & |
| 1106 | (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL); |
| 1107 | |
Matt Turner | b29b5a8 | 2018-06-11 14:56:26 -0700 | [diff] [blame] | 1108 | }''', |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1109 | name : 'GCC atomic builtins') |
| 1110 | pre_args += '-DUSE_GCC_ATOMIC_BUILTINS' |
Thierry Reding | 498faea | 2018-02-23 14:13:27 +0100 | [diff] [blame] | 1111 | |
| 1112 | # Not all atomic calls can be turned into lock-free instructions, in which |
| 1113 | # GCC will make calls into the libatomic library. Check whether we need to |
| 1114 | # link with -latomic. |
| 1115 | # |
| 1116 | # This can happen for 64-bit atomic operations on 32-bit architectures such |
| 1117 | # as ARM. |
| 1118 | if not cc.links('''#include <stdint.h> |
| 1119 | int main() { |
Nicolas Boichat | 54ba73e | 2018-04-05 09:33:09 +0800 | [diff] [blame] | 1120 | struct { |
| 1121 | uint64_t *v; |
| 1122 | } x; |
Andrew Galante | 9d547a7 | 2018-06-11 15:03:36 -0700 | [diff] [blame] | 1123 | return (int)__atomic_load_n(x.v, __ATOMIC_ACQUIRE) & |
| 1124 | (int)__atomic_add_fetch(x.v, (uint64_t)1, __ATOMIC_ACQ_REL); |
Thierry Reding | 498faea | 2018-02-23 14:13:27 +0100 | [diff] [blame] | 1125 | }''', |
| 1126 | name : 'GCC atomic builtins required -latomic') |
| 1127 | dep_atomic = cc.find_library('atomic') |
| 1128 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1129 | endif |
| 1130 | if not cc.links('''#include <stdint.h> |
| 1131 | uint64_t v; |
| 1132 | int main() { |
| 1133 | return __sync_add_and_fetch(&v, (uint64_t)1); |
| 1134 | }''', |
Dylan Baker | 4eab98b | 2018-11-09 12:56:00 -0800 | [diff] [blame] | 1135 | dependencies : dep_atomic, |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1136 | name : 'GCC 64bit atomics') |
Dylan Baker | 4eab98b | 2018-11-09 12:56:00 -0800 | [diff] [blame] | 1137 | pre_args += '-DMISSING_64BIT_ATOMICS' |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1138 | endif |
| 1139 | |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 1140 | dep_ws2_32 = cc.find_library('ws2_32', required : with_platform_windows) |
| 1141 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1142 | # TODO: shared/static? Is this even worth doing? |
| 1143 | |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 1144 | with_asm_arch = '' |
Eric Anholt | 20294dc | 2019-06-20 10:27:28 -0700 | [diff] [blame] | 1145 | if host_machine.cpu_family() == 'x86' |
| 1146 | if system_has_kms_drm or host_machine.system() == 'gnu' |
| 1147 | with_asm_arch = 'x86' |
| 1148 | pre_args += ['-DUSE_X86_ASM', '-DUSE_MMX_ASM', '-DUSE_3DNOW_ASM', |
| 1149 | '-DUSE_SSE_ASM'] |
Matt Turner | a5abb2d | 2018-06-06 20:25:09 -0700 | [diff] [blame] | 1150 | |
Eric Anholt | 20294dc | 2019-06-20 10:27:28 -0700 | [diff] [blame] | 1151 | if with_glx_read_only_text |
| 1152 | pre_args += ['-DGLX_X86_READONLY_TEXT'] |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 1153 | endif |
Eric Anholt | 20294dc | 2019-06-20 10:27:28 -0700 | [diff] [blame] | 1154 | endif |
| 1155 | elif host_machine.cpu_family() == 'x86_64' |
| 1156 | if system_has_kms_drm |
| 1157 | with_asm_arch = 'x86_64' |
| 1158 | pre_args += ['-DUSE_X86_64_ASM'] |
| 1159 | endif |
| 1160 | elif host_machine.cpu_family() == 'arm' |
| 1161 | if system_has_kms_drm |
| 1162 | with_asm_arch = 'arm' |
| 1163 | pre_args += ['-DUSE_ARM_ASM'] |
| 1164 | endif |
| 1165 | elif host_machine.cpu_family() == 'aarch64' |
| 1166 | if system_has_kms_drm |
| 1167 | with_asm_arch = 'aarch64' |
| 1168 | pre_args += ['-DUSE_AARCH64_ASM'] |
| 1169 | endif |
| 1170 | elif host_machine.cpu_family() == 'sparc64' |
| 1171 | if system_has_kms_drm |
| 1172 | with_asm_arch = 'sparc' |
| 1173 | pre_args += ['-DUSE_SPARC_ASM'] |
| 1174 | endif |
| 1175 | elif host_machine.cpu_family().startswith('ppc64') and host_machine.endian() == 'little' |
| 1176 | if system_has_kms_drm |
| 1177 | with_asm_arch = 'ppc64le' |
| 1178 | pre_args += ['-DUSE_PPC64LE_ASM'] |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 1179 | endif |
| 1180 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1181 | |
| 1182 | # Check for standard headers and functions |
Eric Engestrom | 6f26eae | 2019-09-14 22:18:32 +0100 | [diff] [blame] | 1183 | if (cc.has_header_symbol('sys/sysmacros.h', 'major') and |
| 1184 | cc.has_header_symbol('sys/sysmacros.h', 'minor') and |
| 1185 | cc.has_header_symbol('sys/sysmacros.h', 'makedev')) |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1186 | pre_args += '-DMAJOR_IN_SYSMACROS' |
Eric Engestrom | 6f26eae | 2019-09-14 22:18:32 +0100 | [diff] [blame] | 1187 | endif |
| 1188 | if (cc.has_header_symbol('sys/mkdev.h', 'major') and |
| 1189 | cc.has_header_symbol('sys/mkdev.h', 'minor') and |
| 1190 | cc.has_header_symbol('sys/mkdev.h', 'makedev')) |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1191 | pre_args += '-DMAJOR_IN_MKDEV' |
| 1192 | endif |
| 1193 | |
Jan Beich | 63b81c9 | 2020-05-30 22:41:48 +0000 | [diff] [blame] | 1194 | if not ['linux'].contains(host_machine.system()) |
| 1195 | # Deprecated on Linux and requires <sys/types.h> on FreeBSD and OpenBSD |
| 1196 | if cc.check_header('sys/sysctl.h', prefix : '#include <sys/types.h>') |
| 1197 | pre_args += '-DHAVE_SYS_SYSCTL_H' |
| 1198 | endif |
| 1199 | endif |
| 1200 | |
| 1201 | foreach h : ['xlocale.h', 'linux/futex.h', 'endian.h', 'dlfcn.h', 'execinfo.h', 'sys/shm.h', 'cet.h'] |
Dylan Baker | a16e8bf | 2020-04-24 12:28:39 -0700 | [diff] [blame] | 1202 | if cc.check_header(h) |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1203 | pre_args += '-DHAVE_@0@'.format(h.to_upper().underscorify()) |
| 1204 | endif |
| 1205 | endforeach |
| 1206 | |
Emmanuel Gil Peyrot | 4c212a1 | 2019-09-18 13:20:57 +0200 | [diff] [blame] | 1207 | foreach f : ['strtof', 'mkostemp', 'timespec_get', 'memfd_create', 'random_r', 'flock', 'strtok_r', 'getrandom'] |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1208 | if cc.has_function(f) |
| 1209 | pre_args += '-DHAVE_@0@'.format(f.to_upper()) |
| 1210 | endif |
| 1211 | endforeach |
| 1212 | |
Matt Turner | c9b86cf | 2019-07-29 13:51:55 -0700 | [diff] [blame] | 1213 | if cc.has_header_symbol('errno.h', 'program_invocation_name', |
| 1214 | args : '-D_GNU_SOURCE') |
| 1215 | pre_args += '-DHAVE_PROGRAM_INVOCATION_NAME' |
| 1216 | elif with_tools.contains('intel') |
| 1217 | error('Intel tools require the program_invocation_name variable') |
| 1218 | endif |
| 1219 | |
Dylan Baker | 7ef85a0 | 2018-04-18 13:54:12 -0700 | [diff] [blame] | 1220 | # MinGW provides a __builtin_posix_memalign function, but not a posix_memalign. |
| 1221 | # This means that this check will succeed, but then compilation will later |
| 1222 | # fail. MSVC doesn't have this function at all, so only check for it on |
| 1223 | # non-windows platforms. |
| 1224 | if host_machine.system() != 'windows' |
| 1225 | if cc.has_function('posix_memalign') |
| 1226 | pre_args += '-DHAVE_POSIX_MEMALIGN' |
| 1227 | endif |
| 1228 | endif |
| 1229 | |
Alan Coopersmith | 8490b7d | 2019-11-05 16:56:46 -0800 | [diff] [blame] | 1230 | if cc.has_member('struct dirent', 'd_type', prefix: '''#include <sys/types.h> |
| 1231 | #include <dirent.h>''') |
| 1232 | pre_args += '-DHAVE_DIRENT_D_TYPE' |
| 1233 | endif |
| 1234 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1235 | # strtod locale support |
| 1236 | if cc.links(''' |
| 1237 | #define _GNU_SOURCE |
| 1238 | #include <stdlib.h> |
| 1239 | #include <locale.h> |
| 1240 | #ifdef HAVE_XLOCALE_H |
| 1241 | #include <xlocale.h> |
| 1242 | #endif |
| 1243 | int main() { |
| 1244 | locale_t loc = newlocale(LC_CTYPE_MASK, "C", NULL); |
| 1245 | const char *s = "1.0"; |
| 1246 | char *end; |
| 1247 | double d = strtod_l(s, end, loc); |
Eric Engestrom | ab0809e | 2017-11-21 14:24:01 +0000 | [diff] [blame] | 1248 | float f = strtof_l(s, end, loc); |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1249 | freelocale(loc); |
| 1250 | return 0; |
| 1251 | }''', |
Jon Turney | a48c065 | 2018-08-02 14:50:27 +0100 | [diff] [blame] | 1252 | args : pre_args, |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1253 | name : 'strtod has locale support') |
| 1254 | pre_args += '-DHAVE_STRTOD_L' |
| 1255 | endif |
| 1256 | |
| 1257 | # Check for some linker flags |
| 1258 | ld_args_bsymbolic = [] |
Dylan Baker | e21e0a6 | 2017-09-30 13:15:52 -0700 | [diff] [blame] | 1259 | if cc.links('int main() { return 0; }', args : '-Wl,-Bsymbolic', name : 'Bsymbolic') |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1260 | ld_args_bsymbolic += '-Wl,-Bsymbolic' |
| 1261 | endif |
| 1262 | ld_args_gc_sections = [] |
| 1263 | if cc.links('static char unused() { return 5; } int main() { return 0; }', |
Dylan Baker | e21e0a6 | 2017-09-30 13:15:52 -0700 | [diff] [blame] | 1264 | args : '-Wl,--gc-sections', name : 'gc-sections') |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1265 | ld_args_gc_sections += '-Wl,--gc-sections' |
| 1266 | endif |
Dylan Baker | e21e0a6 | 2017-09-30 13:15:52 -0700 | [diff] [blame] | 1267 | with_ld_version_script = false |
| 1268 | if cc.links('int main() { return 0; }', |
| 1269 | args : '-Wl,--version-script=@0@'.format( |
| 1270 | join_paths(meson.source_root(), 'build-support/conftest.map')), |
| 1271 | name : 'version-script') |
| 1272 | with_ld_version_script = true |
| 1273 | endif |
| 1274 | with_ld_dynamic_list = false |
| 1275 | if cc.links('int main() { return 0; }', |
| 1276 | args : '-Wl,--dynamic-list=@0@'.format( |
| 1277 | join_paths(meson.source_root(), 'build-support/conftest.dyn')), |
| 1278 | name : 'dynamic-list') |
| 1279 | with_ld_dynamic_list = true |
| 1280 | endif |
Maya Rashish | c033046 | 2019-09-03 11:55:34 +0300 | [diff] [blame] | 1281 | |
| 1282 | ld_args_build_id = cc.get_supported_link_arguments('-Wl,--build-id=sha1') |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1283 | |
| 1284 | # check for dl support |
Dylan Baker | 0caa229 | 2018-04-05 16:12:51 -0700 | [diff] [blame] | 1285 | dep_dl = null_dep |
Michel Zou | bfd9f32 | 2019-11-11 22:14:55 +0100 | [diff] [blame] | 1286 | if not cc.has_function('dlopen') |
| 1287 | dep_dl = cc.find_library('dl', required : host_machine.system() != 'windows') |
| 1288 | endif |
| 1289 | if cc.has_function('dladdr', dependencies : dep_dl) |
| 1290 | # This is really only required for megadrivers |
| 1291 | pre_args += '-DHAVE_DLADDR' |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1292 | endif |
| 1293 | |
| 1294 | if cc.has_function('dl_iterate_phdr') |
| 1295 | pre_args += '-DHAVE_DL_ITERATE_PHDR' |
Dylan Baker | e89842e | 2017-11-15 17:07:37 -0800 | [diff] [blame] | 1296 | elif with_intel_vk |
| 1297 | error('Intel "Anvil" Vulkan driver requires the dl_iterate_phdr function') |
Dylan Baker | f5eafc2 | 2018-04-18 13:20:28 -0700 | [diff] [blame] | 1298 | elif with_dri_i965 and with_shader_cache |
Dylan Baker | e89842e | 2017-11-15 17:07:37 -0800 | [diff] [blame] | 1299 | error('Intel i965 GL driver requires dl_iterate_phdr when built with shader caching.') |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1300 | endif |
| 1301 | |
| 1302 | # Determine whether or not the rt library is needed for time functions |
Dylan Baker | 81d44c0 | 2018-05-17 13:32:12 -0700 | [diff] [blame] | 1303 | if host_machine.system() == 'windows' or cc.has_function('clock_gettime') |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1304 | dep_clock = null_dep |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1305 | else |
| 1306 | dep_clock = cc.find_library('rt') |
| 1307 | endif |
| 1308 | |
| 1309 | # TODO: some of these may be conditional |
Dylan Baker | 8ba86ad | 2018-04-05 16:14:07 -0700 | [diff] [blame] | 1310 | dep_zlib = dependency('zlib', version : '>= 1.2.3', fallback : ['zlib', 'zlib_dep']) |
Grazvydas Ignotas | 87f7234 | 2017-12-29 01:29:10 +0200 | [diff] [blame] | 1311 | pre_args += '-DHAVE_ZLIB' |
Dylan Baker | a8d9410 | 2019-10-31 13:26:00 -0700 | [diff] [blame] | 1312 | |
| 1313 | _zstd = get_option('zstd') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1314 | if _zstd == 'true' |
| 1315 | _zstd = 'enabled' |
| 1316 | warning('zstd option "true" deprecated, please use "enabled" instead.') |
| 1317 | elif _zstd == 'false' |
| 1318 | _zstd = 'disabled' |
| 1319 | warning('zstd option "false" deprecated, please use "disabled" instead.') |
| 1320 | endif |
| 1321 | if _zstd != 'disabled' |
| 1322 | dep_zstd = dependency('libzstd', required : _zstd == 'enabled') |
Dylan Baker | a8d9410 | 2019-10-31 13:26:00 -0700 | [diff] [blame] | 1323 | if dep_zstd.found() |
| 1324 | pre_args += '-DHAVE_ZSTD' |
| 1325 | endif |
| 1326 | else |
| 1327 | dep_zstd = null_dep |
| 1328 | endif |
| 1329 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1330 | dep_thread = dependency('threads') |
Jon Turney | 8ceccbf | 2017-11-13 10:13:39 +0000 | [diff] [blame] | 1331 | if dep_thread.found() and host_machine.system() != 'windows' |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 1332 | pre_args += '-DHAVE_PTHREAD' |
Dylan Baker | 3acc18f | 2018-09-13 11:06:09 -0700 | [diff] [blame] | 1333 | if cc.has_function( |
| 1334 | 'pthread_setaffinity_np', |
| 1335 | dependencies : dep_thread, |
| 1336 | prefix : '#include <pthread.h>', |
| 1337 | args : '-D_GNU_SOURCE') |
| 1338 | pre_args += '-DHAVE_PTHREAD_SETAFFINITY' |
| 1339 | endif |
Greg V | 0233372 | 2018-09-16 19:51:51 +0300 | [diff] [blame] | 1340 | if cc.has_function( |
| 1341 | 'pthread_setaffinity_np', |
| 1342 | dependencies : dep_thread, |
| 1343 | prefix : '#include <pthread_np.h>') |
| 1344 | pre_args += '-DPTHREAD_SETAFFINITY_IN_NP_HEADER' |
| 1345 | endif |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 1346 | endif |
Dylan Baker | 4441da0 | 2019-10-11 09:19:25 -0700 | [diff] [blame] | 1347 | if host_machine.system() != 'windows' |
| 1348 | dep_expat = dependency('expat', fallback : ['expat', 'expat_dep']) |
| 1349 | else |
| 1350 | dep_expat = null_dep |
| 1351 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1352 | # this only exists on linux so either this is linux and it will be found, or |
Eric Engestrom | 86628ed | 2019-03-07 14:45:26 +0000 | [diff] [blame] | 1353 | # it's not linux and wont |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1354 | dep_m = cc.find_library('m', required : false) |
Dylan Baker | 66f97f6 | 2017-09-30 09:03:51 -0700 | [diff] [blame] | 1355 | |
Eric Engestrom | 86628ed | 2019-03-07 14:45:26 +0000 | [diff] [blame] | 1356 | # Check for libdrm. Various drivers have different libdrm version requirements, |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1357 | # but we always want to use the same version for all libdrm modules. That means |
| 1358 | # even if driver foo requires 2.4.0 and driver bar requires 2.4.3, if foo and |
| 1359 | # bar are both on use 2.4.3 for both of them |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1360 | dep_libdrm_amdgpu = null_dep |
| 1361 | dep_libdrm_radeon = null_dep |
| 1362 | dep_libdrm_nouveau = null_dep |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1363 | dep_libdrm_intel = null_dep |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1364 | |
Marek Olšák | 9edcce2 | 2019-09-24 17:55:52 -0400 | [diff] [blame] | 1365 | _drm_amdgpu_ver = '2.4.100' |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1366 | _drm_radeon_ver = '2.4.71' |
| 1367 | _drm_nouveau_ver = '2.4.66' |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1368 | _drm_intel_ver = '2.4.75' |
Eric Engestrom | 5819bc0 | 2019-06-24 17:47:15 +0100 | [diff] [blame] | 1369 | _drm_ver = '2.4.81' |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1370 | |
| 1371 | _libdrm_checks = [ |
| 1372 | ['intel', with_dri_i915 or with_gallium_i915], |
| 1373 | ['amdgpu', with_amd_vk or with_gallium_radeonsi], |
| 1374 | ['radeon', (with_gallium_radeonsi or with_dri_r100 or with_dri_r200 or |
| 1375 | with_gallium_r300 or with_gallium_r600)], |
| 1376 | ['nouveau', (with_gallium_nouveau or with_dri_nouveau)], |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1377 | ] |
| 1378 | |
Stefan Schake | 4fc0ebd | 2018-04-25 00:00:57 +0200 | [diff] [blame] | 1379 | # VC4 only needs core libdrm support of this version, not a libdrm_vc4 |
| 1380 | # library. |
| 1381 | if with_gallium_vc4 |
| 1382 | _drm_ver = '2.4.89' |
| 1383 | endif |
| 1384 | |
Guido Günther | b921df3 | 2019-05-31 14:35:08 +0200 | [diff] [blame] | 1385 | # etnaviv only needs core libdrm |
| 1386 | if with_gallium_etnaviv |
| 1387 | _drm_ver = '2.4.89' |
| 1388 | endif |
| 1389 | |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1390 | # Loop over the enables versions and get the highest libdrm requirement for all |
| 1391 | # active drivers. |
Dylan Baker | d25a27e | 2018-09-04 14:42:07 -0700 | [diff] [blame] | 1392 | _drm_blame = '' |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1393 | foreach d : _libdrm_checks |
| 1394 | ver = get_variable('_drm_@0@_ver'.format(d[0])) |
| 1395 | if d[1] and ver.version_compare('>' + _drm_ver) |
| 1396 | _drm_ver = ver |
Dylan Baker | d25a27e | 2018-09-04 14:42:07 -0700 | [diff] [blame] | 1397 | _drm_blame = d[0] |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1398 | endif |
| 1399 | endforeach |
Dylan Baker | d25a27e | 2018-09-04 14:42:07 -0700 | [diff] [blame] | 1400 | if _drm_blame != '' |
| 1401 | message('libdrm @0@ needed because @1@ has the highest requirement'.format(_drm_ver, _drm_blame)) |
| 1402 | endif |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1403 | |
| 1404 | # Then get each libdrm module |
| 1405 | foreach d : _libdrm_checks |
| 1406 | if d[1] |
| 1407 | set_variable( |
| 1408 | 'dep_libdrm_' + d[0], |
Dylan Baker | b9ad528 | 2018-04-17 13:47:17 -0700 | [diff] [blame] | 1409 | dependency('libdrm_' + d[0], version : '>=' + _drm_ver) |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1410 | ) |
| 1411 | endif |
| 1412 | endforeach |
Dylan Baker | 673dda8 | 2017-09-20 11:53:29 -0700 | [diff] [blame] | 1413 | |
Dylan Baker | acadf06 | 2018-03-12 15:58:40 -0700 | [diff] [blame] | 1414 | with_gallium_drisw_kms = false |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1415 | dep_libdrm = dependency( |
| 1416 | 'libdrm', version : '>=' + _drm_ver, |
Samuel Thibault | 2fd8510 | 2019-12-28 22:51:39 +0100 | [diff] [blame] | 1417 | # GNU/Hurd includes egl_dri2, without drm. |
| 1418 | required : (with_dri2 and host_machine.system() != 'gnu') or with_dri3 |
Dylan Baker | c445b1d | 2018-03-12 16:32:59 -0700 | [diff] [blame] | 1419 | ) |
Dylan Baker | acadf06 | 2018-03-12 15:58:40 -0700 | [diff] [blame] | 1420 | if dep_libdrm.found() |
| 1421 | pre_args += '-DHAVE_LIBDRM' |
| 1422 | if with_dri_platform == 'drm' and with_dri |
| 1423 | with_gallium_drisw_kms = true |
| 1424 | endif |
| 1425 | endif |
| 1426 | |
Michel Zou | 95fdde5 | 2019-11-17 16:40:29 +0100 | [diff] [blame] | 1427 | llvm_modules = ['bitwriter', 'engine', 'mcdisassembler', 'mcjit', 'core', 'executionengine', 'scalaropts', 'transformutils', 'instcombine'] |
Bas Nieuwenhuizen | 72665a0 | 2019-10-07 17:34:22 +0200 | [diff] [blame] | 1428 | llvm_optional_modules = ['coroutines'] |
Dylan Baker | 5060c51 | 2017-10-25 18:55:38 -0700 | [diff] [blame] | 1429 | if with_amd_vk or with_gallium_radeonsi or with_gallium_r600 |
Nicolai Hähnle | 4275cae | 2018-12-05 13:28:03 +0100 | [diff] [blame] | 1430 | llvm_modules += ['amdgpu', 'native', 'bitreader', 'ipo'] |
Dylan Baker | 5060c51 | 2017-10-25 18:55:38 -0700 | [diff] [blame] | 1431 | if with_gallium_r600 |
| 1432 | llvm_modules += 'asmparser' |
| 1433 | endif |
Dylan Baker | 673dda8 | 2017-09-20 11:53:29 -0700 | [diff] [blame] | 1434 | endif |
Dylan Baker | 42ea063 | 2017-12-08 15:26:00 -0800 | [diff] [blame] | 1435 | if with_gallium_opencl |
| 1436 | llvm_modules += [ |
| 1437 | 'all-targets', 'linker', 'coverage', 'instrumentation', 'ipo', 'irreader', |
| 1438 | 'lto', 'option', 'objcarcopts', 'profiledata', |
| 1439 | ] |
Vinson Lee | 8d28677 | 2019-09-04 22:17:25 -0700 | [diff] [blame] | 1440 | endif |
Dylan Baker | 48f64e5 | 2017-11-17 16:37:50 -0800 | [diff] [blame] | 1441 | |
Marek Olšák | fd1121e | 2018-07-01 15:50:51 -0400 | [diff] [blame] | 1442 | if with_amd_vk or with_gallium_radeonsi |
Samuel Pitoiset | 1fd60db | 2019-08-01 11:18:43 +0200 | [diff] [blame] | 1443 | _llvm_version = '>= 8.0.0' |
Marek Olšák | fd1121e | 2018-07-01 15:50:51 -0400 | [diff] [blame] | 1444 | elif with_gallium_swr |
Juan A. Suarez Romero | 0cef0cc | 2018-08-06 11:30:08 +0200 | [diff] [blame] | 1445 | _llvm_version = '>= 6.0.0' |
Dylan Baker | c75a4e5 | 2018-02-02 10:45:12 -0800 | [diff] [blame] | 1446 | else |
Adam Jackson | 96b5926 | 2019-09-06 09:50:32 +0200 | [diff] [blame] | 1447 | _llvm_version = '>= 3.9.0' |
Dylan Baker | c75a4e5 | 2018-02-02 10:45:12 -0800 | [diff] [blame] | 1448 | endif |
| 1449 | |
Christoph Haag | b01834b | 2018-09-18 01:08:07 +0200 | [diff] [blame] | 1450 | _shared_llvm = get_option('shared-llvm') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1451 | if _shared_llvm == 'true' |
| 1452 | _shared_llvm = 'enabled' |
| 1453 | warning('shared_llvm option "true" deprecated, please use "enabled" instead.') |
| 1454 | elif _shared_llvm == 'false' |
| 1455 | _shared_llvm = 'disabled' |
| 1456 | warning('shared_llvm option "false" deprecated, please use "disabled" instead.') |
| 1457 | endif |
Daniel Stone | 9ecd946 | 2020-04-14 17:41:00 +0100 | [diff] [blame] | 1458 | if _shared_llvm == 'auto' |
| 1459 | _shared_llvm = (host_machine.system() != 'windows') |
| 1460 | else |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1461 | _shared_llvm = (_shared_llvm == 'enabled') |
Daniel Stone | 9ecd946 | 2020-04-14 17:41:00 +0100 | [diff] [blame] | 1462 | endif |
Dylan Baker | 48f64e5 | 2017-11-17 16:37:50 -0800 | [diff] [blame] | 1463 | _llvm = get_option('llvm') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1464 | if _llvm == 'true' |
| 1465 | _llvm = 'enabled' |
| 1466 | warning('llvm option "true" deprecated, please use "enabled" instead.') |
| 1467 | elif _llvm == 'false' |
| 1468 | _llvm = 'disabled' |
| 1469 | warning('llvm option "false" deprecated, please use "disabled" instead.') |
| 1470 | endif |
Dylan Baker | 821cf69 | 2019-07-25 14:27:43 -0700 | [diff] [blame] | 1471 | |
Dylan Baker | fdd0ce1 | 2020-04-14 10:06:35 -0700 | [diff] [blame] | 1472 | # the cmake method can only link statically, so don't attempt to use it if we |
| 1473 | # want to link dynamically. Before 0.54.0 meson will try cmake even when shared |
| 1474 | # linking is requested, so we need to force the config-tool method to be used |
| 1475 | # in that case, but in 0.54.0 meson won't try the cmake method if shared |
| 1476 | # linking is requested. |
| 1477 | _llvm_method = 'auto' |
| 1478 | if meson.version().version_compare('< 0.54.0') and _shared_llvm |
| 1479 | _llvm_method = 'config-tool' |
Dylan Baker | 821cf69 | 2019-07-25 14:27:43 -0700 | [diff] [blame] | 1480 | endif |
| 1481 | |
Dylan Baker | f03a160 | 2018-09-24 09:32:56 -0700 | [diff] [blame] | 1482 | dep_llvm = null_dep |
| 1483 | with_llvm = false |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1484 | if _llvm != 'disabled' |
Eric Anholt | d975e69 | 2017-11-08 11:52:09 -0800 | [diff] [blame] | 1485 | dep_llvm = dependency( |
Dylan Baker | 0ce3f35 | 2018-06-07 11:22:48 -0700 | [diff] [blame] | 1486 | 'llvm', |
| 1487 | version : _llvm_version, |
| 1488 | modules : llvm_modules, |
| 1489 | optional_modules : llvm_optional_modules, |
Dylan Baker | f03a160 | 2018-09-24 09:32:56 -0700 | [diff] [blame] | 1490 | required : ( |
| 1491 | with_amd_vk or with_gallium_radeonsi or with_gallium_swr or |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1492 | with_gallium_opencl or _llvm == 'enabled' |
Dylan Baker | f03a160 | 2018-09-24 09:32:56 -0700 | [diff] [blame] | 1493 | ), |
Christoph Haag | b01834b | 2018-09-18 01:08:07 +0200 | [diff] [blame] | 1494 | static : not _shared_llvm, |
Dylan Baker | 821cf69 | 2019-07-25 14:27:43 -0700 | [diff] [blame] | 1495 | method : _llvm_method, |
Dylan Baker | b962c7c | 2018-04-24 13:48:25 -0700 | [diff] [blame] | 1496 | fallback : ['llvm', 'dep_llvm'], |
Dylan Baker | 0ce3f35 | 2018-06-07 11:22:48 -0700 | [diff] [blame] | 1497 | ) |
Dylan Baker | f03a160 | 2018-09-24 09:32:56 -0700 | [diff] [blame] | 1498 | with_llvm = dep_llvm.found() |
Dylan Baker | 48f64e5 | 2017-11-17 16:37:50 -0800 | [diff] [blame] | 1499 | endif |
| 1500 | if with_llvm |
Eric Engestrom | 1b87646 | 2019-08-28 00:58:18 +0100 | [diff] [blame] | 1501 | pre_args += '-DLLVM_AVAILABLE' |
| 1502 | pre_args += '-DMESA_LLVM_VERSION_STRING="@0@"'.format(dep_llvm.version()) |
Dylan Baker | c5a97d6 | 2018-04-16 14:47:58 -0700 | [diff] [blame] | 1503 | |
| 1504 | # LLVM can be built without rtti, turning off rtti changes the ABI of C++ |
| 1505 | # programs, so we need to build all C++ code in mesa without rtti as well to |
| 1506 | # ensure that linking works. |
Dylan Baker | b962c7c | 2018-04-24 13:48:25 -0700 | [diff] [blame] | 1507 | # |
| 1508 | # In meson 0.51.0 we can use cmake to find LLVM in addittion to meson's |
| 1509 | # builtin llvm-config based finder. A new generic variable getter method |
| 1510 | # has also been added, so we'll use that if we can, to cover the cmake case. |
| 1511 | if dep_llvm.type_name() == 'internal' |
| 1512 | _rtti = subproject('llvm').get_variable('has_rtti', true) |
Dylan Baker | c1a290b | 2020-04-24 10:58:53 -0700 | [diff] [blame] | 1513 | else |
Dylan Baker | b962c7c | 2018-04-24 13:48:25 -0700 | [diff] [blame] | 1514 | # The CMake finder will return 'ON', the llvm-config will return 'YES' |
| 1515 | _rtti = ['ON', 'YES'].contains(dep_llvm.get_variable(cmake : 'LLVM_ENABLE_RTTI', configtool: 'has-rtti')) |
Dylan Baker | b962c7c | 2018-04-24 13:48:25 -0700 | [diff] [blame] | 1516 | endif |
| 1517 | if not _rtti |
Dylan Baker | a259645 | 2018-12-31 19:23:52 -0800 | [diff] [blame] | 1518 | if with_gallium_nouveau |
| 1519 | error('The Nouveau driver requires rtti. You either need to turn off nouveau or use an LLVM built with LLVM_ENABLE_RTTI.') |
Dylan Baker | 29912f2 | 2019-04-01 10:12:03 -0700 | [diff] [blame] | 1520 | elif with_gallium_opencl |
| 1521 | error('The Clover OpenCL state tracker requires rtti, you need to turn off clover or use an LLVM built with LLVM_ENABLE_RTTI.') |
Dylan Baker | a259645 | 2018-12-31 19:23:52 -0800 | [diff] [blame] | 1522 | endif |
Dylan Baker | 3aee462 | 2018-04-18 13:19:54 -0700 | [diff] [blame] | 1523 | if cc.get_id() == 'msvc' |
| 1524 | cpp_args += '/GR-' |
| 1525 | else |
| 1526 | cpp_args += '-fno-rtti' |
| 1527 | endif |
Dylan Baker | c5a97d6 | 2018-04-16 14:47:58 -0700 | [diff] [blame] | 1528 | endif |
Dylan Baker | e0b037d | 2017-11-29 17:50:05 -0800 | [diff] [blame] | 1529 | elif with_amd_vk or with_gallium_radeonsi or with_gallium_swr |
Marek Olšák | 3bf1e03 | 2018-02-02 19:26:49 +0100 | [diff] [blame] | 1530 | error('The following drivers require LLVM: Radv, RadeonSI, SWR. One of these is enabled, but LLVM is disabled.') |
Dylan Baker | 4c332a1 | 2019-04-01 10:14:54 -0700 | [diff] [blame] | 1531 | elif with_gallium_opencl |
| 1532 | error('The OpenCL "Clover" state tracker requires LLVM, but LLVM is disabled.') |
Dylan Baker | 673dda8 | 2017-09-20 11:53:29 -0700 | [diff] [blame] | 1533 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1534 | |
Dylan Baker | 4e785fb | 2018-10-22 07:26:44 -0700 | [diff] [blame] | 1535 | if (with_amd_vk or with_gallium_radeonsi or with_gallium_opencl or |
| 1536 | (with_gallium_r600 and with_llvm)) |
| 1537 | dep_elf = dependency('libelf', required : false) |
| 1538 | if not dep_elf.found() |
| 1539 | dep_elf = cc.find_library('elf') |
| 1540 | endif |
| 1541 | else |
| 1542 | dep_elf = null_dep |
| 1543 | endif |
| 1544 | |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1545 | dep_glvnd = null_dep |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 1546 | if with_glvnd |
Eric Engestrom | 0f201e9 | 2019-09-25 17:42:18 +0100 | [diff] [blame] | 1547 | dep_glvnd = dependency('libglvnd', version : '>= 1.2.0') |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 1548 | pre_args += '-DUSE_LIBGLVND=1' |
| 1549 | endif |
| 1550 | |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1551 | _valgrind = get_option('valgrind') |
| 1552 | if _valgrind == 'true' |
| 1553 | _valgrind = 'enabled' |
| 1554 | warning('valgrind option "true" deprecated, please use "enabled" instead.') |
| 1555 | elif _valgrind == 'false' |
| 1556 | _valgrind = 'disabled' |
| 1557 | warning('valgrind option "false" deprecated, please use "disabled" instead.') |
| 1558 | endif |
| 1559 | if _valgrind != 'disabled' |
| 1560 | dep_valgrind = dependency('valgrind', required : _valgrind == 'enabled') |
Erik Faye-Lund | 5c2ff57 | 2017-10-25 10:02:38 +0200 | [diff] [blame] | 1561 | if dep_valgrind.found() |
| 1562 | pre_args += '-DHAVE_VALGRIND' |
| 1563 | endif |
| 1564 | else |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1565 | dep_valgrind = null_dep |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1566 | endif |
| 1567 | |
| 1568 | # pthread stubs. Lets not and say we didn't |
| 1569 | |
Dylan Baker | 8b19c5b | 2018-05-17 13:42:50 -0700 | [diff] [blame] | 1570 | if host_machine.system() == 'windows' |
| 1571 | # Prefer the winflexbison versions, they're much easier to install and have |
| 1572 | # better windows support. |
| 1573 | |
| 1574 | prog_flex = find_program('win_flex', required : false) |
| 1575 | if prog_flex.found() |
| 1576 | # windows compatibility (uses <io.h> instead of <unistd.h> and _isatty, |
| 1577 | # _fileno functions) |
Erik Faye-Lund | daeff19 | 2020-04-15 23:22:51 +0200 | [diff] [blame] | 1578 | prog_flex = [prog_flex, '--wincompat', '-D__STDC_VERSION__=199901'] |
Dylan Baker | 8b19c5b | 2018-05-17 13:42:50 -0700 | [diff] [blame] | 1579 | else |
| 1580 | prog_flex = [find_program('lex', 'flex', required : with_any_opengl)] |
| 1581 | endif |
| 1582 | # Force flex to use const keyword in prototypes, as relies on __cplusplus or |
| 1583 | # __STDC__ macro to determine whether it's safe to use const keyword, but |
| 1584 | # MSVC never defines __STDC__ unless we disable all MSVC extensions. |
| 1585 | prog_flex += '-DYY_USE_CONST=' |
| 1586 | |
| 1587 | prog_bison = find_program('win_bison', required : false) |
| 1588 | if not prog_bison.found() |
| 1589 | prog_bison = find_program('yacc', 'bison', required : with_any_opengl) |
| 1590 | endif |
| 1591 | else |
| 1592 | prog_bison = find_program('bison', required : with_any_opengl) |
Eric Anholt | 11a1cb2 | 2020-02-18 16:03:19 -0800 | [diff] [blame] | 1593 | |
| 1594 | # Disable deprecated keyword warnings, since we have to use them for |
| 1595 | # old-bison compat. See discussion in |
Dylan Baker | c1a290b | 2020-04-24 10:58:53 -0700 | [diff] [blame] | 1596 | # https://gitlab.freedesktop.org/mesa/mesa/merge_requests/2161 |
| 1597 | if find_program('bison', required : false, version : '> 2.3').found() |
Vinson Lee | 1e43910 | 2020-02-27 21:01:55 -0800 | [diff] [blame] | 1598 | prog_bison = [prog_bison, '-Wno-deprecated'] |
| 1599 | endif |
Eric Anholt | 11a1cb2 | 2020-02-18 16:03:19 -0800 | [diff] [blame] | 1600 | |
Dylan Baker | 8b19c5b | 2018-05-17 13:42:50 -0700 | [diff] [blame] | 1601 | prog_flex = find_program('flex', required : with_any_opengl) |
| 1602 | endif |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 1603 | |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1604 | dep_selinux = null_dep |
Eric Engestrom | 4b9421d | 2017-10-26 16:19:41 +0100 | [diff] [blame] | 1605 | if get_option('selinux') |
| 1606 | dep_selinux = dependency('libselinux') |
| 1607 | pre_args += '-DMESA_SELINUX' |
| 1608 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1609 | |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1610 | _libunwind = get_option('libunwind') |
| 1611 | if _libunwind == 'true' |
| 1612 | _libunwind = 'enabled' |
| 1613 | warning('libunwind option "true" deprecated, please use "enabled" instead.') |
| 1614 | elif _libunwind == 'false' |
| 1615 | _libunwind = 'disabled' |
| 1616 | warning('libunwind option "false" deprecated, please use "disabled" instead.') |
| 1617 | endif |
| 1618 | if _libunwind != 'disabled' |
| 1619 | dep_unwind = dependency('libunwind', required : _libunwind == 'enabled') |
Erik Faye-Lund | 5c2ff57 | 2017-10-25 10:02:38 +0200 | [diff] [blame] | 1620 | if dep_unwind.found() |
| 1621 | pre_args += '-DHAVE_LIBUNWIND' |
| 1622 | endif |
| 1623 | else |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1624 | dep_unwind = null_dep |
Dylan Baker | b1b6539 | 2017-09-28 22:25:02 -0700 | [diff] [blame] | 1625 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1626 | |
Dylan Baker | cbbd5bb | 2017-10-20 21:48:18 -0700 | [diff] [blame] | 1627 | if with_osmesa != 'none' |
Dylan Baker | f121a66 | 2017-10-24 15:52:57 -0700 | [diff] [blame] | 1628 | if with_osmesa == 'gallium' and not with_gallium_softpipe |
| 1629 | error('OSMesa gallium requires gallium softpipe or llvmpipe.') |
| 1630 | endif |
Dylan Baker | 597a063 | 2018-04-18 13:29:26 -0700 | [diff] [blame] | 1631 | if host_machine.system() == 'windows' |
| 1632 | osmesa_lib_name = 'osmesa' |
| 1633 | else |
| 1634 | osmesa_lib_name = 'OSMesa' |
| 1635 | endif |
Dylan Baker | cbbd5bb | 2017-10-20 21:48:18 -0700 | [diff] [blame] | 1636 | osmesa_bits = get_option('osmesa-bits') |
| 1637 | if osmesa_bits != '8' |
| 1638 | if with_dri or with_glx != 'disabled' |
| 1639 | error('OSMesa bits must be 8 if building glx or dir based drivers') |
| 1640 | endif |
| 1641 | osmesa_lib_name = osmesa_lib_name + osmesa_bits |
| 1642 | pre_args += [ |
| 1643 | '-DCHAN_BITS=@0@'.format(osmesa_bits), '-DDEFAULT_SOFTWARE_DEPTH_BITS=31' |
| 1644 | ] |
| 1645 | endif |
| 1646 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1647 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1648 | # TODO: symbol mangling |
| 1649 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1650 | if with_platform_wayland |
Emil Velikov | c077b74 | 2018-06-28 14:34:18 +0100 | [diff] [blame] | 1651 | dep_wl_scanner = dependency('wayland-scanner', native: true) |
| 1652 | prog_wl_scanner = find_program(dep_wl_scanner.get_pkgconfig_variable('wayland_scanner')) |
Emil Velikov | 2f1d9e6 | 2018-06-28 14:42:08 +0100 | [diff] [blame] | 1653 | if dep_wl_scanner.version().version_compare('>= 1.15') |
| 1654 | wl_scanner_arg = 'private-code' |
| 1655 | else |
| 1656 | wl_scanner_arg = 'code' |
| 1657 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1658 | dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.8') |
| 1659 | dep_wayland_client = dependency('wayland-client', version : '>=1.11') |
| 1660 | dep_wayland_server = dependency('wayland-server', version : '>=1.11') |
Eric Engestrom | 1db4ec0 | 2018-05-29 15:41:28 +0100 | [diff] [blame] | 1661 | if with_egl |
Eric Engestrom | 37eb56d | 2018-06-07 15:45:01 +0100 | [diff] [blame] | 1662 | dep_wayland_egl = dependency('wayland-egl-backend', version : '>= 3') |
Quentin Glidic | 00f5ea9 | 2020-04-23 10:47:05 +0200 | [diff] [blame] | 1663 | dep_wayland_egl_headers = dep_wayland_egl.partial_dependency(compile_args : true) |
Eric Engestrom | 1db4ec0 | 2018-05-29 15:41:28 +0100 | [diff] [blame] | 1664 | endif |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 1665 | wayland_dmabuf_xml = join_paths( |
| 1666 | dep_wl_protocols.get_pkgconfig_variable('pkgdatadir'), 'unstable', |
| 1667 | 'linux-dmabuf', 'linux-dmabuf-unstable-v1.xml' |
| 1668 | ) |
| 1669 | pre_args += ['-DHAVE_WAYLAND_PLATFORM', '-DWL_HIDE_DEPRECATED'] |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1670 | endif |
| 1671 | |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1672 | dep_x11 = null_dep |
| 1673 | dep_xext = null_dep |
| 1674 | dep_xdamage = null_dep |
| 1675 | dep_xfixes = null_dep |
| 1676 | dep_x11_xcb = null_dep |
| 1677 | dep_xcb = null_dep |
| 1678 | dep_xcb_glx = null_dep |
| 1679 | dep_xcb_dri2 = null_dep |
| 1680 | dep_xcb_dri3 = null_dep |
| 1681 | dep_dri2proto = null_dep |
| 1682 | dep_glproto = null_dep |
| 1683 | dep_xxf86vm = null_dep |
| 1684 | dep_xcb_dri3 = null_dep |
| 1685 | dep_xcb_present = null_dep |
| 1686 | dep_xcb_sync = null_dep |
| 1687 | dep_xcb_xfixes = null_dep |
| 1688 | dep_xshmfence = null_dep |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 1689 | dep_xcb_xrandr = null_dep |
Keith Packard | 3f960c1 | 2018-06-19 15:58:30 -0700 | [diff] [blame] | 1690 | dep_xlib_xrandr = null_dep |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1691 | if with_platform_x11 |
Dylan Baker | ad9c2f5 | 2017-11-02 13:36:44 -0700 | [diff] [blame] | 1692 | if with_glx == 'xlib' or with_glx == 'gallium-xlib' |
Dylan Baker | 118a7f0 | 2017-11-01 17:42:41 -0700 | [diff] [blame] | 1693 | dep_x11 = dependency('x11') |
| 1694 | dep_xext = dependency('xext') |
| 1695 | dep_xcb = dependency('xcb') |
Jon Turney | 6f0ce26 | 2017-11-23 13:51:43 +0000 | [diff] [blame] | 1696 | elif with_glx == 'dri' |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 1697 | dep_x11 = dependency('x11') |
| 1698 | dep_xext = dependency('xext') |
| 1699 | dep_xdamage = dependency('xdamage', version : '>= 1.1') |
| 1700 | dep_xfixes = dependency('xfixes') |
| 1701 | dep_xcb_glx = dependency('xcb-glx', version : '>= 1.8.1') |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 1702 | endif |
Chia-I Wu | 6eeb1fe | 2019-01-07 12:54:19 -0800 | [diff] [blame] | 1703 | if (with_any_vk or with_glx == 'dri' or with_egl or |
Dylan Baker | 34e852d | 2018-03-06 10:11:38 -0800 | [diff] [blame] | 1704 | (with_gallium_vdpau or with_gallium_xvmc or with_gallium_va or |
| 1705 | with_gallium_omx != 'disabled')) |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 1706 | dep_xcb = dependency('xcb') |
| 1707 | dep_x11_xcb = dependency('x11-xcb') |
Dylan Baker | 1481d05 | 2019-10-03 10:17:08 -0700 | [diff] [blame] | 1708 | if with_dri_platform == 'drm' and not dep_libdrm.found() |
Dylan Baker | 3b265f6 | 2019-05-09 10:32:31 -0700 | [diff] [blame] | 1709 | error('libdrm required for gallium video statetrackers when using x11') |
| 1710 | endif |
Jon Turney | 6f0ce26 | 2017-11-23 13:51:43 +0000 | [diff] [blame] | 1711 | endif |
Dylan Baker | f74cf04 | 2018-02-28 10:13:38 -0800 | [diff] [blame] | 1712 | if with_any_vk or with_egl or (with_glx == 'dri' and with_dri_platform == 'drm') |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 1713 | dep_xcb_dri2 = dependency('xcb-dri2', version : '>= 1.8') |
| 1714 | |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 1715 | if with_dri3 |
Rob Clark | bc50013 | 2018-03-13 19:00:45 -0400 | [diff] [blame] | 1716 | pre_args += '-DHAVE_DRI3' |
| 1717 | dep_xcb_dri3 = dependency('xcb-dri3') |
| 1718 | dep_xcb_present = dependency('xcb-present') |
| 1719 | # until xcb-dri3 has been around long enough to make a hard-dependency: |
| 1720 | if (dep_xcb_dri3.version().version_compare('>= 1.13') and |
| 1721 | dep_xcb_present.version().version_compare('>= 1.13')) |
| 1722 | pre_args += '-DHAVE_DRI3_MODIFIERS' |
| 1723 | endif |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 1724 | dep_xcb_sync = dependency('xcb-sync') |
| 1725 | dep_xshmfence = dependency('xshmfence', version : '>= 1.1') |
Dylan Baker | a47c525 | 2017-09-22 12:55:00 -0700 | [diff] [blame] | 1726 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1727 | endif |
Chuck Atkins | a381dbf | 2019-05-03 12:06:22 -0400 | [diff] [blame] | 1728 | if with_glx == 'dri' or with_glx == 'gallium-xlib' |
| 1729 | dep_glproto = dependency('glproto', version : '>= 1.4.14') |
| 1730 | endif |
Dylan Baker | fafd20f | 2019-09-25 23:25:27 +0000 | [diff] [blame] | 1731 | if with_glx == 'dri' |
Jon Turney | 3ae998a | 2017-11-23 14:01:57 +0000 | [diff] [blame] | 1732 | if with_dri_platform == 'drm' |
| 1733 | dep_dri2proto = dependency('dri2proto', version : '>= 2.8') |
Emil Velikov | a95ec13 | 2018-12-11 16:20:40 +0000 | [diff] [blame] | 1734 | dep_xxf86vm = dependency('xxf86vm') |
Jon Turney | 3ae998a | 2017-11-23 14:01:57 +0000 | [diff] [blame] | 1735 | endif |
Dylan Baker | 50c28df | 2017-09-29 17:53:01 -0700 | [diff] [blame] | 1736 | endif |
Dylan Baker | 1e9d779 | 2018-02-28 13:07:57 -0800 | [diff] [blame] | 1737 | if (with_egl or ( |
| 1738 | with_gallium_vdpau or with_gallium_xvmc or with_gallium_xa or |
| 1739 | with_gallium_omx != 'disabled')) |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 1740 | dep_xcb_xfixes = dependency('xcb-xfixes') |
| 1741 | endif |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 1742 | if with_xlib_lease |
Marek Olšák | 1e85cfb | 2019-01-23 19:48:26 -0500 | [diff] [blame] | 1743 | dep_xcb_xrandr = dependency('xcb-randr') |
Keith Packard | 3f960c1 | 2018-06-19 15:58:30 -0700 | [diff] [blame] | 1744 | dep_xlib_xrandr = dependency('xrandr', version : '>= 1.3') |
Keith Packard | 7ab1fff | 2018-02-09 07:45:58 -0800 | [diff] [blame] | 1745 | endif |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1746 | endif |
| 1747 | |
Dylan Baker | 7309207 | 2017-11-28 16:31:06 -0800 | [diff] [blame] | 1748 | if get_option('gallium-extra-hud') |
| 1749 | pre_args += '-DHAVE_GALLIUM_EXTRA_HUD=1' |
| 1750 | endif |
| 1751 | |
Dylan Baker | 5e71efe | 2017-11-28 16:42:37 -0800 | [diff] [blame] | 1752 | _sensors = get_option('lmsensors') |
Dylan Baker | 138c003 | 2020-05-19 14:01:47 -0700 | [diff] [blame] | 1753 | if _sensors == 'true' |
| 1754 | _sensors = 'enabled' |
| 1755 | warning('sensors option "true" deprecated, please use "enabled" instead.') |
| 1756 | elif _sensors == 'false' |
| 1757 | _sensors = 'disabled' |
| 1758 | warning('sensors option "false" deprecated, please use "disabled" instead.') |
| 1759 | endif |
| 1760 | if _sensors != 'disabled' |
| 1761 | dep_lmsensors = cc.find_library('sensors', required : _sensors == 'enabled') |
Dylan Baker | 5e71efe | 2017-11-28 16:42:37 -0800 | [diff] [blame] | 1762 | if dep_lmsensors.found() |
| 1763 | pre_args += '-DHAVE_LIBSENSORS=1' |
| 1764 | endif |
| 1765 | else |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1766 | dep_lmsensors = null_dep |
Dylan Baker | 5e71efe | 2017-11-28 16:42:37 -0800 | [diff] [blame] | 1767 | endif |
| 1768 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1769 | foreach a : pre_args |
| 1770 | add_project_arguments(a, language : ['c', 'cpp']) |
| 1771 | endforeach |
| 1772 | foreach a : c_args |
| 1773 | add_project_arguments(a, language : ['c']) |
| 1774 | endforeach |
| 1775 | foreach a : cpp_args |
| 1776 | add_project_arguments(a, language : ['cpp']) |
| 1777 | endforeach |
| 1778 | |
Lukas Rusak | 4cfc4ce | 2018-06-04 12:38:41 -0700 | [diff] [blame] | 1779 | gl_priv_reqs = [] |
| 1780 | |
| 1781 | if with_glx == 'xlib' or with_glx == 'gallium-xlib' |
| 1782 | gl_priv_reqs += ['x11', 'xext', 'xcb'] |
| 1783 | elif with_glx == 'dri' |
| 1784 | gl_priv_reqs += [ |
| 1785 | 'x11', 'xext', 'xdamage >= 1.1', 'xfixes', 'x11-xcb', 'xcb', |
| 1786 | 'xcb-glx >= 1.8.1'] |
| 1787 | if with_dri_platform == 'drm' |
| 1788 | gl_priv_reqs += 'xcb-dri2 >= 1.8' |
Emil Velikov | a95ec13 | 2018-12-11 16:20:40 +0000 | [diff] [blame] | 1789 | gl_priv_reqs += 'xxf86vm' |
Lukas Rusak | 4cfc4ce | 2018-06-04 12:38:41 -0700 | [diff] [blame] | 1790 | endif |
| 1791 | endif |
Jon Turney | 4a0bab1 | 2018-01-25 18:53:08 +0000 | [diff] [blame] | 1792 | if dep_libdrm.found() |
| 1793 | gl_priv_reqs += 'libdrm >= 2.4.75' |
| 1794 | endif |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 1795 | |
| 1796 | gl_priv_libs = [] |
| 1797 | if dep_thread.found() |
| 1798 | gl_priv_libs += ['-lpthread', '-pthread'] |
| 1799 | endif |
| 1800 | if dep_m.found() |
| 1801 | gl_priv_libs += '-lm' |
| 1802 | endif |
Dylan Baker | b5f92b6 | 2018-03-15 13:30:22 -0700 | [diff] [blame] | 1803 | if dep_dl.found() |
Dylan Baker | 108d257 | 2017-10-18 12:20:43 -0700 | [diff] [blame] | 1804 | gl_priv_libs += '-ldl' |
| 1805 | endif |
| 1806 | |
Dylan Baker | 3218056 | 2017-09-20 20:11:32 -0700 | [diff] [blame] | 1807 | pkg = import('pkgconfig') |
| 1808 | |
Eric Engestrom | 4d5cde1 | 2019-10-29 21:42:16 +0000 | [diff] [blame] | 1809 | if host_machine.system() == 'windows' |
| 1810 | prog_dumpbin = find_program('dumpbin', required : false) |
| 1811 | with_symbols_check = prog_dumpbin.found() and with_tests |
| 1812 | symbols_check_args = ['--dumpbin', prog_dumpbin.path()] |
| 1813 | else |
Eric Engestrom | 66dd535 | 2019-10-29 21:43:22 +0000 | [diff] [blame] | 1814 | prog_nm = find_program('nm') |
| 1815 | with_symbols_check = with_tests |
Eric Engestrom | 4d5cde1 | 2019-10-29 21:42:16 +0000 | [diff] [blame] | 1816 | symbols_check_args = ['--nm', prog_nm.path()] |
| 1817 | endif |
Eric Engestrom | 11d4530 | 2018-02-23 17:02:08 +0000 | [diff] [blame] | 1818 | |
Konstantin Kharlamov | fccc9d3 | 2019-02-03 21:36:32 +0300 | [diff] [blame] | 1819 | # This quirk needs to be applied to sources with functions defined in assembly |
| 1820 | # as GCC LTO drops them. See: https://bugs.freedesktop.org/show_bug.cgi?id=109391 |
| 1821 | gcc_lto_quirk = (cc.get_id() == 'gcc') ? ['-fno-lto'] : [] |
| 1822 | |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1823 | subdir('include') |
Eric Engestrom | 05a94a4 | 2017-10-24 18:03:39 +0100 | [diff] [blame] | 1824 | subdir('bin') |
Dylan Baker | d199225 | 2017-09-14 17:57:17 -0700 | [diff] [blame] | 1825 | subdir('src') |
Erik Faye-Lund | d30ce03 | 2019-04-12 17:51:30 +0200 | [diff] [blame] | 1826 | |
| 1827 | # Meson 0.49 and earlier seems to have a bug that fails to evaluate the string- |
| 1828 | # formatting below unless the first argument is passed as a variable. This has |
| 1829 | # been fixed in Meson 0.50 and beyond, but we need to keep it like this for now |
| 1830 | # for backwards compatibility. |
| 1831 | _with_opengl_string = with_opengl ? 'yes' : 'no' |
| 1832 | |
| 1833 | lines = ['', |
| 1834 | 'prefix: ' + get_option('prefix'), |
| 1835 | 'libdir: ' + get_option('libdir'), |
| 1836 | 'includedir: ' + get_option('includedir'), |
| 1837 | '', |
| 1838 | 'OpenGL: @0@ (ES1: @1@ ES2: @2@)'.format(_with_opengl_string, |
| 1839 | with_gles1 ? 'yes' : 'no', |
| 1840 | with_gles2 ? 'yes' : 'no'), |
| 1841 | ] |
| 1842 | |
Erik Faye-Lund | d30ce03 | 2019-04-12 17:51:30 +0200 | [diff] [blame] | 1843 | if with_osmesa != 'none' |
Eric Engestrom | 6227e6f | 2019-06-25 10:13:17 +0100 | [diff] [blame] | 1844 | lines += '' |
Erik Faye-Lund | d30ce03 | 2019-04-12 17:51:30 +0200 | [diff] [blame] | 1845 | suffix = '' |
| 1846 | if with_osmesa == 'gallium' |
| 1847 | suffix = '(Gallium)' |
| 1848 | endif |
| 1849 | lines += 'OSMesa: lib' + osmesa_lib_name + suffix |
| 1850 | else |
| 1851 | lines += 'OSMesa: no' |
| 1852 | endif |
| 1853 | |
Erik Faye-Lund | d30ce03 | 2019-04-12 17:51:30 +0200 | [diff] [blame] | 1854 | if with_dri |
Eric Engestrom | 6227e6f | 2019-06-25 10:13:17 +0100 | [diff] [blame] | 1855 | lines += '' |
Erik Faye-Lund | d30ce03 | 2019-04-12 17:51:30 +0200 | [diff] [blame] | 1856 | lines += 'DRI platform: ' + with_dri_platform |
| 1857 | if dri_drivers.length() != 0 and dri_drivers != [''] |
| 1858 | lines += 'DRI drivers: ' + ' '.join(dri_drivers) |
| 1859 | else |
| 1860 | lines += 'DRI drivers: no' |
| 1861 | endif |
| 1862 | lines += 'DRI driver dir: ' + dri_drivers_path |
| 1863 | endif |
| 1864 | |
Erik Faye-Lund | d30ce03 | 2019-04-12 17:51:30 +0200 | [diff] [blame] | 1865 | if with_glx != 'disabled' |
Eric Engestrom | 6227e6f | 2019-06-25 10:13:17 +0100 | [diff] [blame] | 1866 | lines += '' |
Erik Faye-Lund | d30ce03 | 2019-04-12 17:51:30 +0200 | [diff] [blame] | 1867 | if with_glx == 'dri' |
| 1868 | lines += 'GLX: DRI-based' |
| 1869 | elif with_glx == 'xlib' |
| 1870 | lines += 'GLX: Xlib-based' |
| 1871 | elif with_glx == 'gallium-xlib' |
| 1872 | lines += 'GLX: Xlib-based (Gallium)' |
| 1873 | else |
| 1874 | lines += 'GLX: ' + with_glx |
| 1875 | endif |
| 1876 | endif |
| 1877 | |
| 1878 | lines += '' |
| 1879 | lines += 'EGL: ' + (with_egl ? 'yes' : 'no') |
| 1880 | if with_egl |
| 1881 | egl_drivers = [] |
| 1882 | if with_dri |
| 1883 | egl_drivers += 'builtin:egl_dri2' |
| 1884 | endif |
| 1885 | if with_dri3 |
| 1886 | egl_drivers += 'builtin:egl_dri3' |
| 1887 | endif |
| 1888 | lines += 'EGL drivers: ' + ' '.join(egl_drivers) |
| 1889 | endif |
| 1890 | lines += 'GBM: ' + (with_gbm ? 'yes' : 'no') |
Eric Engestrom | d321446 | 2018-05-14 16:40:47 +0100 | [diff] [blame] | 1891 | if _platforms.length() != 0 |
Erik Faye-Lund | d30ce03 | 2019-04-12 17:51:30 +0200 | [diff] [blame] | 1892 | lines += 'EGL/Vulkan/VL platforms: ' + ' '.join(_platforms) |
| 1893 | endif |
| 1894 | |
| 1895 | lines += '' |
| 1896 | if with_any_vk |
| 1897 | lines += 'Vulkan drivers: ' + ' '.join(_vulkan_drivers) |
| 1898 | lines += 'Vulkan ICD dir: ' + with_vulkan_icd_dir |
| 1899 | else |
| 1900 | lines += 'Vulkan drivers: no' |
| 1901 | endif |
| 1902 | |
| 1903 | lines += '' |
| 1904 | if with_llvm |
| 1905 | lines += 'llvm: yes' |
| 1906 | lines += 'llvm-version: ' + dep_llvm.version() |
| 1907 | else |
| 1908 | lines += 'llvm: no' |
| 1909 | endif |
| 1910 | |
| 1911 | lines += '' |
| 1912 | if with_gallium |
| 1913 | lines += 'Gallium drivers: ' + ' '.join(gallium_drivers) |
| 1914 | gallium_st = ['mesa'] |
| 1915 | if with_gallium_xa |
| 1916 | gallium_st += 'xa' |
| 1917 | endif |
| 1918 | if with_gallium_xvmc |
| 1919 | gallium_st += 'xvmc' |
| 1920 | endif |
| 1921 | if with_gallium_xvmc |
| 1922 | gallium_st += 'xvmc' |
| 1923 | endif |
| 1924 | if with_gallium_vdpau |
| 1925 | gallium_st += 'vdpau' |
| 1926 | endif |
| 1927 | if with_gallium_omx != 'disabled' |
| 1928 | gallium_st += 'omx' + with_gallium_omx |
| 1929 | endif |
| 1930 | if with_gallium_va |
| 1931 | gallium_st += 'va' |
| 1932 | endif |
| 1933 | if with_gallium_st_nine |
| 1934 | gallium_st += 'nine' |
| 1935 | endif |
| 1936 | if with_gallium_opencl |
| 1937 | gallium_st += 'clover' |
| 1938 | endif |
| 1939 | lines += 'Gallium st: ' + ' '.join(gallium_st) |
| 1940 | else |
| 1941 | lines += 'Gallium: no' |
| 1942 | endif |
| 1943 | |
| 1944 | lines += 'HUD lmsensors: ' + (dep_lmsensors.found() ? 'yes' : 'no') |
| 1945 | |
| 1946 | lines += '' |
| 1947 | lines += 'Shared-glapi: ' + (with_shared_glapi ? 'yes' : 'no') |
| 1948 | |
| 1949 | |
| 1950 | indent = ' ' |
| 1951 | summary = indent + ('\n' + indent).join(lines) |
| 1952 | message('Configuration summary:\n@0@\n'.format(summary)) |