From c38b67f4d1abe7b137b24dbfa4aaf0be46c2b193 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") Part-of: --- meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 75c4d38..0aa07eb 100644 --- a/meson.build +++ b/meson.build @@ -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, -- 2.7.4