From 5586bb37bd531a433e18f096f028f0f4ec182dd7 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Thu, 13 Jun 2019 10:50:42 -0400 Subject: [PATCH] fix: Static build fails with ctfser missing symbols Spliting the ctf-writer from the main library had the side effect of not including the ctfser convience library in the main lib anymore. Thus it should now be linked with the binairies to satisfy the dependencies when we statically link the plugins in. Signed-off-by: Michael Jeanson Change-Id: I4626dcabce1914f0af2287afe8c3fcf7b7db9946 Reviewed-on: https://review.lttng.org/c/babeltrace/+/1421 CI-Build: Philippe Proulx Tested-by: jenkins Reviewed-by: Philippe Proulx --- src/cli/Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/Makefile.am b/src/cli/Makefile.am index 45297d52..b8b1a7aa 100644 --- a/src/cli/Makefile.am +++ b/src/cli/Makefile.am @@ -45,6 +45,7 @@ babeltrace2_bin_LDADD = \ $(top_builddir)/src/compat/libcompat.la \ $(top_builddir)/src/common/libbabeltrace2-common.la \ $(top_builddir)/src/logging/libbabeltrace2-logging.la \ + $(top_builddir)/src/ctfser/libbabeltrace2-ctfser.la \ $(POPT_LIBS) if ENABLE_BUILT_IN_PLUGINS -- 2.34.1