intel: Limit Intel Vulkan RT to x86_64
authorMatt Turner <mattst88@gmail.com>
Sat, 2 Sep 2023 12:22:53 +0000 (08:22 -0400)
committerAlyssa Rosenzweig <alyssa@rosenzweig.io>
Sat, 2 Sep 2023 19:43:18 +0000 (15:43 -0400)
Note: passed CI repeatedly except for the timing out WHL jobs.

Fixes: 28c1053c07c ("intel: Allow using intel_clc from the system")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25009>

meson.build

index 75c4d38..0aa07eb 100644 (file)
@@ -253,10 +253,11 @@ with_any_broadcom = [
 
 if ['x86_64'].contains(host_machine.cpu_family())
   with_intel_clc = get_option('intel-clc') == 'enabled'
+  with_intel_vk_rt = with_intel_vk and get_option('intel-clc') != 'disabled'
 else
   with_intel_clc = false
+  with_intel_vk_rt = false
 endif
-with_intel_vk_rt = with_intel_vk and get_option('intel-clc') != 'disabled'
 
 with_any_intel = [
   with_gallium_crocus,