diff options
author | Guido Günther <[email protected]> | 2018-08-26 22:24:00 +0200 |
---|---|---|
committer | Dylan Baker <[email protected]> | 2018-08-27 11:32:04 -0700 |
commit | 9de34b4ddecb41deae8a4a6349534f330ce0f4cd (patch) | |
tree | 4f22bdc136362ef9085ef4bdc737b0e0d6ffec69 /meson.build | |
parent | 05e2fc6860c515073a5cd7ed305dae86fc9c8232 (diff) |
meson: Don't enable any vulkan drivers on arm, aarch64
There's no Vulkan support for arm atm.
Signed-off-by: Guido Günther <[email protected]>
Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meson.build b/meson.build index c3a7e8cdd74..7f6f128e0b2 100644 --- a/meson.build +++ b/meson.build @@ -179,6 +179,8 @@ if _vulkan_drivers.contains('auto') if system_has_kms_drm if host_machine.cpu_family().startswith('x86') _vulkan_drivers = ['amd', 'intel'] + elif ['arm', 'aarch64'].contains(host_machine.cpu_family()) + _vulkan_drivers = [] else error('Unknown architecture @0@. Please pass -Dvulkan-drivers to set driver options. Patches gladly accepted to fix this.'.format( host_machine.cpu_family())) |