From 95c24964123eb01ed316d9f9a6295c20183b5849 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Thu, 7 Nov 2024 13:50:23 +0100 Subject: [PATCH] meson: bump spirv-tools version needed to v2022.1 Since c60a421f0c2357fe1363 ("vtn: Add a debug flag to dump SPIR-V assembly"), we use SPIR-V 1.6, which was added in `spirv-tools 2022.1`. Fixes: c60a421f0c2357fe1363 ("vtn: Add a debug flag to dump SPIR-V assembly") Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/11802 Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index dbfcf89137f..52b713c28a3 100644 --- a/meson.build +++ b/meson.build @@ -1848,7 +1848,7 @@ endif dep_spirv_tools = dependency( 'SPIRV-Tools', required : with_clover_spirv or with_clc, - version : '>= 2018.0' + version : '>= 2022.1' ) if dep_spirv_tools.found() pre_args += '-DHAVE_SPIRV_TOOLS'