intel: Limit Intel Vulkan RT to x86_64

Note: passed CI repeatedly except for the timing out WHL jobs.

Fixes: 28c1053c07 ("intel: Allow using intel_clc from the system")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25009>
This commit is contained in:
Matt Turner
2023-09-02 08:22:53 -04:00
committed by Alyssa Rosenzweig
parent fd114ab706
commit c38b67f4d1

View 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,