From 66a30385fe3a78be6c7d16260b52d06824a4ec53 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 30 Jun 2025 16:58:41 +0000 Subject: [PATCH] meson: change RadV dependency on LLVM to an ACO tests dependency RadV itself doesn't require LLVM, only the ACO tests do. So stop requiring LLVM for ACO without its tests. Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 28cf22b4ae8..b291f349b6d 100644 --- a/meson.build +++ b/meson.build @@ -281,7 +281,7 @@ with_any_vk = _vulkan_drivers.length() != 0 with_llvm = with_llvm \ .enable_if(with_swrast_vk, error_message : 'Lavapipe Vulkan driver requires LLVM') \ - .enable_if(with_amd_vk, error_message : 'RadV Vulkan driver requires LLVM') + .enable_if(with_amd_vk and with_aco_tests, error_message : 'RadV ACO tests require LLVM') with_any_llvmpipe = with_gallium_llvmpipe or with_swrast_vk with_gallium_or_lvp = with_gallium or with_swrast_vk