From e55aa87f323f3276d68cab6ce5800318f3224a5b Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Fri, 22 Sep 2023 00:02:35 -0700 Subject: [PATCH] compiler: Only enable mesaclc helper if we have OpenCL SPIR-V support Reviewed-by: Karol Herbst Reviewed-by: Eric Engestrom Part-of: --- src/compiler/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/meson.build b/src/compiler/meson.build index ad58205..4dfe21b 100644 --- a/src/compiler/meson.build +++ b/src/compiler/meson.build @@ -87,7 +87,7 @@ subdir('nir') subdir('spirv') -if with_clc +if with_opencl_spirv subdir('clc') endif if with_gallium -- 2.7.4