From: Matt Turner Date: Sat, 2 Sep 2023 12:22:53 +0000 (-0400) Subject: intel: Limit Intel Vulkan RT to x86_64 X-Git-Tag: upstream/23.3.3~2565 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c38b67f4d1abe7b137b24dbfa4aaf0be46c2b193;p=platform%2Fupstream%2Fmesa.git 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: --- 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,