From: Michael Jeanson Date: Thu, 13 Jun 2019 14:50:42 +0000 (-0400) Subject: fix: Static build fails with ctfser missing symbols X-Git-Tag: v2.0.0-rc1~720 X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=commitdiff_plain;h=5586bb37bd531a433e18f096f028f0f4ec182dd7 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 --- 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