commit 320dc64838b3c07df923563d5a38b99c80ac0dfd parent ba8a95ccb8ba60abc4b2cba0bb9aefae4fa8b475 Author: Christophe Coustet <christophe.coustet@meso-star.com> Date: Fri, 17 Apr 2026 11:41:01 +0200 Fix tests build Following the visibility changes in pkg-config requirements, some lib was missing at link time for tests. Diffstat:
| M | Makefile | | | 5 | +++-- |
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/Makefile b/Makefile @@ -192,8 +192,9 @@ TEST_TGT =\ # Regular cflags PKG_CONFIG_LOCAL = PKG_CONFIG_PATH="./:$${PKG_CONFIG_PATH}" $(PKG_CONFIG) -INCS_TEST = $$($(PKG_CONFIG_LOCAL) $(PCFLAGS) --cflags rsys ssol-local) -LIBS_TEST = $$($(PKG_CONFIG_LOCAL) $(PCFLAGS) --libs rsys ssol-local) -lm +INCS_TEST = $$($(PKG_CONFIG_LOCAL) $(PCFLAGS) --cflags rsys star-sp ssol-local) +LIBS_TEST = $$($(PKG_CONFIG_LOCAL) $(PCFLAGS) --libs rsys star-sp ssol-local)\ + -lm $(TEST_DEP) $(TEST_OBJ): config.mk .config_test