From dd0f6d70bac1f7e0e188552e53b444086d6bddb7 Mon Sep 17 00:00:00 2001 From: Mark Janes Date: Wed, 21 Feb 2024 12:00:09 -0800 Subject: [PATCH] pan/va: Add missing valhall_enums dep to bifrost_tests bifrost_tests compilation fails if the valhall_enums.h has not been generated. Acked-by: Dylan Baker Part-of: --- src/panfrost/compiler/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/compiler/meson.build b/src/panfrost/compiler/meson.build index 367da2e5a4d..d7c82706d46 100644 --- a/src/panfrost/compiler/meson.build +++ b/src/panfrost/compiler/meson.build @@ -181,7 +181,7 @@ if with_tests c_args : [c_msvc_compat_args, no_override_init_args], gnu_symbol_visibility : 'hidden', include_directories : [inc_include, inc_src, inc_mesa, inc_valhall], - dependencies: [idep_gtest, idep_nir, idep_bi_opcodes_h, idep_bi_builder_h], + dependencies: [idep_gtest, idep_nir, idep_bi_opcodes_h, idep_bi_builder_h, idep_valhall_enums_h], link_with : [libpanfrost_bifrost], ), suite : ['panfrost'],