rusticl: depend on the spirv_info target

Hit this while building only rusticl_mesa_bindings.

Fixes: a09c5d55ed ("spirv: Auto-generate spirv_info.h")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29275>
This commit is contained in:
Karol Herbst 2024-06-10 12:20:14 +02:00 committed by Marge Bot
parent 36a18208f7
commit ea1e7dd9e9

View file

@ -255,6 +255,10 @@ rusticl_libc_bindings_rs = rust.bindgen(
]
)
_idep_mesa_bindings = declare_dependency(
sources : spirv_info,
)
rusticl_mesa_bindings = rust.bindgen(
input : 'rusticl_mesa_bindings.h',
output : 'rusticl_mesa_bindings.rs',
@ -266,6 +270,7 @@ rusticl_mesa_bindings = rust.bindgen(
inc_src,
],
dependencies: [
_idep_mesa_bindings,
idep_nir_headers,
dep_valgrind,
],