From: Guido Günther Date: Sun, 26 Aug 2018 20:24:00 +0000 (+0200) Subject: meson: Don't enable any vulkan drivers on arm, aarch64 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9de34b4ddecb41deae8a4a6349534f330ce0f4cd;p=mesa.git meson: Don't enable any vulkan drivers on arm, aarch64 There's no Vulkan support for arm atm. Signed-off-by: Guido Günther Reviewed-by: Dylan Baker --- 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()))