meson: Limit intel_vk_rt to x86_64

Fixes: a512c2a8b5 ("meson: enforce build of intel-clc with anv/iris")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/10610
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27608>
This commit is contained in:
Matt Turner
2024-02-13 20:04:10 -05:00
committed by Marge Bot
parent 34078b67ed
commit 88d0c6c26a

View File

@@ -303,7 +303,8 @@ else
with_intel_clc = false
endif
with_intel_vk_rt = with_intel_vk and get_option('intel-rt') != 'disabled'
with_intel_vk_rt = ['x86_64'].contains(host_machine.cpu_family()) and \
with_intel_vk and get_option('intel-rt') != 'disabled'
with_any_intel = [
with_gallium_crocus,