2019-10-31 20:26:00 +00:00
|
|
|
# Copyright © 2017-2019 Intel Corporation
|
2017-09-15 00:57:17 +00:00
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'platforms',
|
2018-04-16 22:18:08 +00:00
|
|
|
type : 'array',
|
|
|
|
value : ['auto'],
|
|
|
|
choices : [
|
2020-07-10 14:11:46 +00:00
|
|
|
'auto', 'x11', 'wayland', 'haiku', 'android', 'windows',
|
2018-04-16 22:18:08 +00:00
|
|
|
],
|
2018-10-11 15:38:24 +00:00
|
|
|
description : 'window systems to support. If this is set to `auto`, all platforms applicable will be enabled.'
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
2020-07-28 22:25:49 +00:00
|
|
|
option(
|
|
|
|
'android-stub',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Build against android-stub',
|
|
|
|
)
|
|
|
|
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'dri3',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'disabled', 'enabled'],
|
2017-10-10 22:44:14 +00:00
|
|
|
description : 'enable support for dri3'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'dri-drivers',
|
2018-04-16 22:18:08 +00:00
|
|
|
type : 'array',
|
|
|
|
value : ['auto'],
|
swrast: Remove the classic swrast DRI driver
Following up from the classic swrast OSMesa removal in favor of
llvmpipe/softpipe, remove the classic swrast DRI driver. It's unused by
any distribution -- debian was the last holdout until this week, which had
it enabled instead of softpipe on obscure platforms (non-LLVM and hurd).
Now that debian has switched, remove the driver so nobody can accidentally
enable it again.
Fixes: #325, #324, #322, #321, #319, #318, #317, #315, #313, #311, #310,
#306, #305, #304, #302, #301, #300, #299, #298, #297, #293, #289
Reviewed-by: Eric Anholt <eric@anholt.net> (commit message rewritten)
Reviewed-by: Matt Turner <mattst88@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8069>
2020-12-09 22:22:04 +00:00
|
|
|
choices : ['auto', 'i915', 'i965', 'r100', 'r200', 'nouveau'],
|
2018-04-16 22:18:08 +00:00
|
|
|
description : 'List of dri drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
|
|
|
option(
|
|
|
|
'dri-drivers-path',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
2018-01-16 18:36:28 +00:00
|
|
|
description : 'Location to install dri drivers. Default: $libdir/dri.'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'dri-search-path',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'Locations to search for dri drivers, passed as colon separated list. Default: dri-drivers-path.'
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
|
|
|
option(
|
|
|
|
'gallium-drivers',
|
2018-04-16 22:18:08 +00:00
|
|
|
type : 'array',
|
|
|
|
value : ['auto'],
|
|
|
|
choices : [
|
2018-05-14 15:40:47 +00:00
|
|
|
'auto', 'kmsro', 'radeonsi', 'r300', 'r600', 'nouveau', 'freedreno',
|
2019-01-24 20:03:54 +00:00
|
|
|
'swrast', 'v3d', 'vc4', 'etnaviv', 'tegra', 'i915', 'svga', 'virgl',
|
2019-05-26 08:43:12 +00:00
|
|
|
'swr', 'panfrost', 'iris', 'lima', 'zink', 'd3d12'
|
2018-04-16 22:18:08 +00:00
|
|
|
],
|
|
|
|
description : 'List of gallium drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
2017-11-29 00:31:06 +00:00
|
|
|
option(
|
|
|
|
'gallium-extra-hud',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Enable HUD block/NIC I/O HUD status support',
|
|
|
|
)
|
2017-10-30 21:04:21 +00:00
|
|
|
option(
|
|
|
|
'gallium-vdpau',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2019-12-04 01:38:14 +00:00
|
|
|
description : 'enable gallium vdpau frontend.',
|
2017-10-30 21:04:21 +00:00
|
|
|
)
|
|
|
|
option(
|
|
|
|
'vdpau-libs-path',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'path to put vdpau libraries. defaults to $libdir/vdpau.'
|
|
|
|
)
|
2017-10-30 21:32:30 +00:00
|
|
|
option(
|
|
|
|
'gallium-xvmc',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2019-12-04 01:38:14 +00:00
|
|
|
description : 'enable gallium xvmc frontend.',
|
2017-10-30 21:32:30 +00:00
|
|
|
)
|
|
|
|
option(
|
|
|
|
'xvmc-libs-path',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'path to put xvmc libraries. defaults to $libdir.'
|
|
|
|
)
|
2017-10-30 22:23:06 +00:00
|
|
|
option(
|
|
|
|
'gallium-omx',
|
|
|
|
type : 'combo',
|
2018-03-06 18:11:38 +00:00
|
|
|
value : 'auto',
|
|
|
|
choices : ['auto', 'disabled', 'bellagio', 'tizonia'],
|
2019-12-04 01:38:14 +00:00
|
|
|
description : 'enable gallium omx frontend.',
|
2017-10-30 22:23:06 +00:00
|
|
|
)
|
|
|
|
option(
|
|
|
|
'omx-libs-path',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'path to put omx libraries. defaults to omx-bellagio pkg-config pluginsdir.'
|
|
|
|
)
|
2017-10-30 22:49:37 +00:00
|
|
|
option(
|
|
|
|
'gallium-va',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2019-12-04 01:38:14 +00:00
|
|
|
description : 'enable gallium va frontend.',
|
2017-10-30 22:49:37 +00:00
|
|
|
)
|
|
|
|
option(
|
|
|
|
'va-libs-path',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'path to put va libraries. defaults to $libdir/dri.'
|
|
|
|
)
|
2017-10-31 00:40:30 +00:00
|
|
|
option(
|
|
|
|
'gallium-xa',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2019-12-04 01:38:14 +00:00
|
|
|
description : 'enable gallium xa frontend.',
|
2017-10-31 00:40:30 +00:00
|
|
|
)
|
2017-11-14 01:58:51 +00:00
|
|
|
option(
|
|
|
|
'gallium-nine',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
2019-12-04 01:38:14 +00:00
|
|
|
description : 'build gallium "nine" Direct3D 9.x frontend.',
|
2017-11-14 01:58:51 +00:00
|
|
|
)
|
2017-12-08 23:26:00 +00:00
|
|
|
option(
|
|
|
|
'gallium-opencl',
|
|
|
|
type : 'combo',
|
|
|
|
choices : ['icd', 'standalone', 'disabled'],
|
|
|
|
value : 'disabled',
|
2019-12-04 01:38:14 +00:00
|
|
|
description : 'build gallium "clover" OpenCL frontend.',
|
2017-12-08 23:26:00 +00:00
|
|
|
)
|
2018-01-21 18:10:58 +00:00
|
|
|
option(
|
|
|
|
'opencl-spirv',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
2019-12-04 01:38:14 +00:00
|
|
|
description : 'build gallium "clover" OpenCL frontend with SPIR-V binary support.',
|
2018-01-21 18:10:58 +00:00
|
|
|
)
|
2020-11-19 02:27:07 +00:00
|
|
|
option(
|
|
|
|
'opencl-native',
|
|
|
|
type : 'boolean',
|
|
|
|
value : true,
|
|
|
|
description : 'build gallium "clover" OpenCL frontend with native LLVM codegen support.',
|
|
|
|
)
|
2020-10-06 16:26:07 +00:00
|
|
|
option(
|
|
|
|
'static-libclc',
|
|
|
|
type : 'array',
|
|
|
|
value : [],
|
|
|
|
choices : ['spirv', 'spirv64', 'all'],
|
|
|
|
description : 'Link libclc SPIR-V statically.',
|
|
|
|
)
|
2017-11-14 01:58:51 +00:00
|
|
|
option(
|
|
|
|
'd3d-drivers-path',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'Location of D3D drivers. Default: $libdir/d3d',
|
|
|
|
)
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'vulkan-drivers',
|
2018-04-16 22:18:08 +00:00
|
|
|
type : 'array',
|
|
|
|
value : ['auto'],
|
2019-11-25 15:29:12 +00:00
|
|
|
choices : ['auto', 'amd', 'broadcom', 'freedreno', 'intel', 'swrast'],
|
2018-04-16 22:18:08 +00:00
|
|
|
description : 'List of vulkan drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
2020-04-07 19:36:20 +00:00
|
|
|
option(
|
|
|
|
'freedreno-kgsl',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'use kgsl backend for freedreno vulkan driver',
|
|
|
|
)
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'shader-cache',
|
2018-04-18 20:20:28 +00:00
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-11-20 00:09:22 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
|
|
|
description : 'Build with on-disk shader cache support.',
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'shader-cache-default',
|
|
|
|
type : 'boolean',
|
|
|
|
value : true,
|
|
|
|
description : 'If set to false, the feature is only activated when environment variable MESA_GLSL_CACHE_DISABLE is set to false',
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
2020-10-17 20:43:59 +00:00
|
|
|
option(
|
|
|
|
'shader-cache-max-size',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
2020-12-06 11:35:42 +00:00
|
|
|
description : '''Default value for MESA_GLSL_CACHE_MAX_SIZE enviroment variable.
|
2020-10-17 20:43:59 +00:00
|
|
|
If set, determines the maximum size of the on-disk cache of compiled
|
|
|
|
GLSL programs, can be overriden by enviroment variable if needed. Should be set to a number optionally followed by
|
|
|
|
``K``, ``M``, or ``G`` to specify a size in kilobytes, megabytes, or
|
|
|
|
gigabytes. By default, gigabytes will be assumed. And if unset, a
|
2020-12-06 11:35:42 +00:00
|
|
|
maximum size of 1GB will be used.'''
|
2020-10-17 20:43:59 +00:00
|
|
|
)
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'vulkan-icd-dir',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'Location relative to prefix to put vulkan icds on install. Default: $datadir/vulkan/icd.d'
|
|
|
|
)
|
2019-01-19 21:26:12 +00:00
|
|
|
option(
|
|
|
|
'vulkan-overlay-layer',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Whether to build the vulkan overlay layer'
|
|
|
|
)
|
2020-03-29 23:38:38 +00:00
|
|
|
option(
|
|
|
|
'vulkan-device-select-layer',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Whether to build the vulkan device select layer'
|
|
|
|
)
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'shared-glapi',
|
2019-05-31 23:16:22 +00:00
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2019-05-31 23:16:22 +00:00
|
|
|
description : 'Whether to build a shared or static glapi. Defaults to false on Windows, true elsewhere'
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
|
|
|
option(
|
|
|
|
'gles1',
|
2018-10-19 16:47:41 +00:00
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2017-10-10 22:44:14 +00:00
|
|
|
description : 'Build support for OpenGL ES 1.x'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'gles2',
|
2018-10-19 16:47:41 +00:00
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2017-10-10 22:44:14 +00:00
|
|
|
description : 'Build support for OpenGL ES 2.x and 3.x'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'opengl',
|
|
|
|
type : 'boolean',
|
|
|
|
value : true,
|
|
|
|
description : 'Build support for OpenGL (all versions)'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'gbm',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2017-10-10 22:44:14 +00:00
|
|
|
description : 'Build support for gbm platform'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'glx',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
|
|
|
choices : ['auto', 'disabled', 'dri', 'xlib', 'gallium-xlib'],
|
|
|
|
description : 'Build support for GLX platform'
|
|
|
|
)
|
2017-10-18 19:20:43 +00:00
|
|
|
option(
|
|
|
|
'egl',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2017-10-18 19:20:43 +00:00
|
|
|
description : 'Build support for EGL platform'
|
|
|
|
)
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'glvnd',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Enable GLVND support.'
|
|
|
|
)
|
2020-11-06 16:09:30 +00:00
|
|
|
option(
|
|
|
|
'microsoft-clc',
|
2020-11-20 00:14:54 +00:00
|
|
|
type : 'feature',
|
2020-11-06 16:09:30 +00:00
|
|
|
value : 'auto',
|
|
|
|
description : 'Build support for the Microsoft CLC to DXIL compiler'
|
|
|
|
)
|
2020-12-21 22:58:47 +00:00
|
|
|
option(
|
|
|
|
'spirv-to-dxil',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Build support for the SPIR-V to DXIL library'
|
|
|
|
)
|
2020-11-18 15:26:19 +00:00
|
|
|
option(
|
|
|
|
'glvnd-vendor-name',
|
|
|
|
type : 'string',
|
|
|
|
value : 'mesa',
|
|
|
|
description : 'Vendor name string to use for glvnd libraries'
|
|
|
|
)
|
2018-06-07 03:25:09 +00:00
|
|
|
option(
|
|
|
|
'glx-read-only-text',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Disable writable .text section on x86 (decreases performance)'
|
|
|
|
)
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'llvm',
|
2017-11-18 00:37:50 +00:00
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2017-10-10 22:44:14 +00:00
|
|
|
description : 'Build with LLVM support.'
|
|
|
|
)
|
2018-09-17 23:08:07 +00:00
|
|
|
option(
|
|
|
|
'shared-llvm',
|
2020-04-14 16:41:00 +00:00
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2020-04-14 16:41:00 +00:00
|
|
|
description : 'Whether to link LLVM shared or statically.'
|
2018-09-17 23:08:07 +00:00
|
|
|
)
|
2021-02-24 18:42:49 +00:00
|
|
|
option(
|
|
|
|
'draw-use-llvm',
|
|
|
|
type : 'boolean',
|
|
|
|
value : 'true',
|
|
|
|
description : 'Whether to use LLVM for the Gallium draw module, if LLVM is included.'
|
|
|
|
)
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'valgrind',
|
2017-10-25 08:02:38 +00:00
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2017-10-25 08:02:38 +00:00
|
|
|
description : 'Build with valgrind support'
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
2017-10-23 18:54:03 +00:00
|
|
|
option(
|
|
|
|
'libunwind',
|
2017-10-25 08:02:38 +00:00
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2017-10-25 08:02:38 +00:00
|
|
|
description : 'Use libunwind for stack-traces'
|
2017-10-23 18:54:03 +00:00
|
|
|
)
|
2017-11-29 00:42:37 +00:00
|
|
|
option(
|
|
|
|
'lmsensors',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2017-11-29 00:42:37 +00:00
|
|
|
description : 'Enable HUD lmsensors support.'
|
|
|
|
)
|
2017-10-10 22:44:14 +00:00
|
|
|
option(
|
|
|
|
'build-tests',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
2020-01-22 19:58:27 +00:00
|
|
|
description : 'Build unit tests. Currently this will build *all* unit tests except the ACO tests, which may build more than expected.'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'build-aco-tests',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
2020-02-14 11:32:18 +00:00
|
|
|
description : 'Build ACO tests. These require RADV and glslang but not an AMD GPU.'
|
2017-10-10 22:44:14 +00:00
|
|
|
)
|
2019-04-02 15:26:09 +00:00
|
|
|
option(
|
|
|
|
'install-intel-gpu-tests',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Build and install Intel unit tests which require the GPU. This option is for developers and the Intel CI system only.'
|
|
|
|
)
|
2017-10-26 15:19:41 +00:00
|
|
|
option(
|
|
|
|
'selinux',
|
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
|
|
|
description : 'Build an SELinux-aware Mesa'
|
|
|
|
)
|
2017-10-21 04:48:18 +00:00
|
|
|
option(
|
|
|
|
'osmesa',
|
2019-07-03 18:10:32 +00:00
|
|
|
type : 'boolean',
|
|
|
|
value : false,
|
2017-10-21 04:48:18 +00:00
|
|
|
description : 'Build OSmesa.'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'osmesa-bits',
|
|
|
|
type : 'combo',
|
|
|
|
value : '8',
|
|
|
|
choices : ['8', '16', '32'],
|
|
|
|
description : 'Number of channel bits for OSMesa.'
|
|
|
|
)
|
2017-11-30 01:50:05 +00:00
|
|
|
option(
|
|
|
|
'swr-arches',
|
2018-04-16 22:18:08 +00:00
|
|
|
type : 'array',
|
|
|
|
value : ['avx', 'avx2'],
|
|
|
|
choices : ['avx', 'avx2', 'knl', 'skx'],
|
|
|
|
description : 'Architectures to build SWR support for.',
|
2017-11-30 01:50:05 +00:00
|
|
|
)
|
2020-01-22 11:26:45 +00:00
|
|
|
option(
|
|
|
|
'shared-swr',
|
|
|
|
type : 'boolean',
|
|
|
|
value : true,
|
|
|
|
description : 'Whether to link SWR shared or statically.',
|
|
|
|
)
|
|
|
|
|
2018-02-08 00:55:24 +00:00
|
|
|
option(
|
|
|
|
'tools',
|
2018-04-16 22:18:08 +00:00
|
|
|
type : 'array',
|
|
|
|
value : [],
|
2020-04-24 08:20:25 +00:00
|
|
|
choices : ['drm-shim', 'etnaviv', 'freedreno', 'glsl', 'intel', 'intel-ui', 'nir', 'nouveau', 'xvmc', 'lima', 'panfrost', 'all'],
|
2018-10-30 11:26:46 +00:00
|
|
|
description : 'List of tools to build. (Note: `intel-ui` selects `intel`)',
|
2018-02-08 00:55:24 +00:00
|
|
|
)
|
2018-06-07 18:13:34 +00:00
|
|
|
option(
|
|
|
|
'power8',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2018-06-07 18:13:34 +00:00
|
|
|
description : 'Enable power8 optimizations.',
|
|
|
|
)
|
2018-02-09 15:45:58 +00:00
|
|
|
option(
|
|
|
|
'xlib-lease',
|
|
|
|
type : 'combo',
|
|
|
|
value : 'auto',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2018-02-09 15:45:58 +00:00
|
|
|
description : 'Enable VK_EXT_acquire_xlib_display.'
|
|
|
|
)
|
2018-12-04 18:06:08 +00:00
|
|
|
option(
|
|
|
|
'glx-direct',
|
|
|
|
type : 'boolean',
|
|
|
|
value : true,
|
|
|
|
description : 'Enable direct rendering in GLX and EGL for DRI',
|
|
|
|
)
|
2019-11-23 06:18:58 +00:00
|
|
|
option(
|
|
|
|
'prefer-iris',
|
|
|
|
type : 'boolean',
|
2019-11-23 06:24:52 +00:00
|
|
|
value : true,
|
2019-11-23 06:18:58 +00:00
|
|
|
description : 'Prefer new Intel iris driver over older i965 driver'
|
|
|
|
)
|
2018-06-13 22:17:32 +00:00
|
|
|
option('egl-lib-suffix',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'Suffix to append to EGL library name. Default: none.'
|
|
|
|
)
|
|
|
|
option(
|
|
|
|
'gles-lib-suffix',
|
|
|
|
type : 'string',
|
|
|
|
value : '',
|
|
|
|
description : 'Suffix to append to GLES library names. Default: none.'
|
|
|
|
)
|
2019-03-15 17:08:45 +00:00
|
|
|
option(
|
|
|
|
'platform-sdk-version',
|
|
|
|
type : 'integer',
|
|
|
|
min : 25,
|
|
|
|
max : 28,
|
|
|
|
value : 25,
|
|
|
|
description : 'Android Platform SDK version. Default: Nougat version.'
|
|
|
|
)
|
2019-10-31 20:26:00 +00:00
|
|
|
option(
|
|
|
|
'zstd',
|
|
|
|
type : 'combo',
|
2020-05-19 21:01:47 +00:00
|
|
|
choices : ['auto', 'true', 'false', 'enabled', 'disabled'],
|
2019-10-31 20:26:00 +00:00
|
|
|
value : 'auto',
|
|
|
|
description : 'Use ZSTD instead of ZLIB in some cases.'
|
|
|
|
)
|
2020-11-26 16:48:38 +00:00
|
|
|
option(
|
|
|
|
'zlib',
|
|
|
|
type : 'feature',
|
|
|
|
value : 'enabled',
|
|
|
|
description : 'Use ZLIB to build driver. Default: enabled'
|
|
|
|
)
|
2020-11-26 16:47:10 +00:00
|
|
|
option(
|
|
|
|
'sse2',
|
|
|
|
type : 'boolean',
|
|
|
|
value : true,
|
|
|
|
description : 'use msse2 flag for mingw x86. Default: true',
|
|
|
|
)
|