From 8e707cf3ccc055db3568b290edf2408162156394 Mon Sep 17 00:00:00 2001 From: Simon Perretta Date: Tue, 5 Aug 2025 09:55:36 +0100 Subject: [PATCH] pco: fix missing csbgen dependency Signed-off-by: Simon Perretta Acked-by: Erik Faye-Lund Part-of: --- src/imagination/pco/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagination/pco/meson.build b/src/imagination/pco/meson.build index 49e24aac7aa..fbfde5f83c1 100644 --- a/src/imagination/pco/meson.build +++ b/src/imagination/pco/meson.build @@ -125,7 +125,7 @@ libpowervr_compiler = static_library( ], # Suppress 'parameter passing for argument of type ... changed in GCC ...' warnings. c_args : [imagination_c_args, no_override_init_args, '-Wno-psabi'], - dependencies : [idep_mesautil, idep_nir, idep_pco_pygen, idep_pco_usclib], + dependencies : [dep_csbgen, idep_mesautil, idep_nir, idep_pco_pygen, idep_pco_usclib], gnu_symbol_visibility : 'hidden', install : false, )