Module: Mesa
Branch: main
Commit: c51e40dd8b031fb43993e3e6413c035f81ab1afa
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=c51e40dd8b031fb43993e3e6413c035f81ab1afa

Author: Eric Engestrom <[email protected]>
Date:   Sun Dec 10 16:35:53 2023 +0000

spirv: add missing build dependency

Fixes: 59a72570b66ad7c4fd95 ("compiler: Move spirv into a module of its own")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/10277
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26624>

---

 src/compiler/spirv/meson.build | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/compiler/spirv/meson.build b/src/compiler/spirv/meson.build
index 000f54c7627..cba7b79a21e 100644
--- a/src/compiler/spirv/meson.build
+++ b/src/compiler/spirv/meson.build
@@ -81,7 +81,9 @@ idep_vtn = declare_dependency(
 
 spirv2nir = executable(
   'spirv2nir',
-  files('spirv2nir.c'),
+  files('spirv2nir.c') + [
+   vtn_generator_ids_h,
+  ],
   dependencies : [dep_m, idep_vtn, idep_mesautil],
   include_directories : [inc_include, inc_src],
   c_args : [c_msvc_compat_args, no_override_init_args],

Reply via email to