From bf8ebb6a7d7bc8fac865d12de63383554eb4994a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iv=C3=A1n=20Briano?= Date: Fri, 1 Aug 2025 11:33:31 -0700 Subject: [PATCH] intel: Re-disable ray tracing on 32 bits We had this disabled before moving to the common framework for BVH building and lost it along the way. Fixes: f0e18c475b7 ("intel: remove GRL/intel-clc") Reviewed-by: Lionel Landwerlin Part-of: --- meson.build | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meson.build b/meson.build index 3be192356ec..00a6666783e 100644 --- a/meson.build +++ b/meson.build @@ -325,8 +325,12 @@ with_any_broadcom = [ with_broadcom_vk, ].contains(true) +intel_vk_can_rt = host_machine.cpu_family() == 'x86_64' or \ + host_machine.cpu_family() == 'aarch64' with_intel_vk_rt = get_option('intel-rt') \ .disable_auto_if(not with_intel_vk) \ + .disable_if(not intel_vk_can_rt, \ + error_message: 'Intel Ray Tracing requires 64-bit architectures') \ .allowed() with_any_intel = [