From 882608de2cbbea3c3ec4c8bc3c60dd7a51b51f03 Mon Sep 17 00:00:00 2001 From: Matt Turner Date: Sat, 2 Sep 2023 08:22:53 -0400 Subject: [PATCH] intel: Limit Intel Vulkan RT to x86_64 Note: passed CI repeatedly except for the timing out WHL jobs. Fixes: 28c1053c07c ("intel: Allow using intel_clc from the system") (cherry picked from commit c38b67f4d1abe7b137b24dbfa4aaf0be46c2b193) Part-of: --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index c90e664d83f..59732981b8a 100644 --- a/meson.build +++ b/meson.build @@ -252,10 +252,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,