From a2d3c74094b0cacf6f03c2f7d047ff7d00b2b2b5 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Sun, 1 Oct 2023 12:23:59 -0400 Subject: [PATCH] meson: Require clc for asahi By the end of the series, this will become a hard dependency for the driver. Signed-off-by: Alyssa Rosenzweig Reviewed-by: Konstantin Seurer Reviewed-by: Karol Herbst Reviewed-by: Faith Ekstrand Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 3cad3ab0838..61d76eeab1f 100644 --- a/meson.build +++ b/meson.build @@ -304,7 +304,7 @@ if with_aco_tests and not with_amd_vk endif with_microsoft_clc = get_option('microsoft-clc').enabled() -with_clc = with_microsoft_clc or with_intel_clc +with_clc = with_microsoft_clc or with_intel_clc or with_gallium_asahi with_spirv_to_dxil = get_option('spirv-to-dxil') if host_machine.system() == 'darwin'