From 5d84e6cf26274a6b49df73caab7fb03a241fb286 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 25 Jul 2024 15:52:37 +0200 Subject: [PATCH] meson: improve wording of "incompatible llvm options" error Part-of: --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e30395372a2..fcf04c078a9 100644 --- a/meson.build +++ b/meson.build @@ -1838,9 +1838,9 @@ if with_llvm elif with_amd_vk and with_aco_tests error('ACO tests require LLVM, but LLVM is disabled.') elif with_swrast_vk - error('The following drivers require LLVM: Lavapipe. One of these is enabled, but LLVM is disabled.') + error('lavapipe requires LLVM and is enabled, but LLVM is disabled.') elif with_gallium_llvmpipe - error('The following drivers require LLVM: llvmpipe. It is enabled, but LLVM is disabled.') + error('llvmpipe requires LLVM and is enabled, but LLVM is disabled.') elif with_gallium_clover error('The OpenCL "Clover" state tracker requires LLVM, but LLVM is disabled.') elif with_clc