Fix build with BUILT_IN_PLUGINS=1
authorPhilippe Proulx <eeppeliteloop@gmail.com>
Thu, 8 Jun 2017 17:13:07 +0000 (13:13 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Fri, 9 Jun 2017 21:03:27 +0000 (17:03 -0400)
Changes:

* Make library always depend on its convenience libraries. Since the
  library is not linked with --whole-archive in the CLI when
  BUILT_IN_PLUGINS=1 (like plugins are), it's okay for it to include
  convenience symbols.

* Do not build tests/lib/test_plugin when BUILT_IN_PLUGINS=1

* Do not build tests/plugins when BUILT_IN_PLUGINS=1

Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com>
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
include/babeltrace/logging-internal.h
lib/Makefile.am
tests/Makefile.am
tests/lib/Makefile.am
tests/plugins/Makefile.am

index 21e3a0fd09b89b4c4efc31ecfb769860a85cad2c..d7a10a1339c8f0962e35231fad2aa4d4f102b774 100644 (file)
@@ -954,6 +954,8 @@ extern "C" {
  *   bt_log_set_output_v(BT_LOG_OUT_STDERR);
  */
 enum { BT_LOG_OUT_STDERR_MASK = BT_LOG_PUT_STD };
+
+BT_HIDDEN
 void bt_log_out_stderr_callback(const bt_log_message *const msg, void *arg);
 #define BT_LOG_OUT_STDERR BT_LOG_OUT_STDERR_MASK, 0, bt_log_out_stderr_callback
 
index 6a35b8f8d2c3766b90f252158c2e86be90349d70..c7e368806918d71f40593c3fdec03cc9835500bc 100644 (file)
@@ -12,15 +12,12 @@ libbabeltrace_la_LIBADD = \
        graph/libgraph.la \
        plugin/libplugin.la \
        ctf-ir/libctf-ir.la \
-       ctf-writer/libctf-writer.la
+       ctf-writer/libctf-writer.la \
+       $(top_builddir)/logging/libbabeltrace-logging.la \
+       $(top_builddir)/common/libbabeltrace-common.la \
+       $(top_builddir)/compat/libcompat.la
 
 if BUILT_IN_PYTHON_PLUGIN_SUPPORT
 libbabeltrace_la_LIBADD += $(top_builddir)/python-plugin-provider/libbabeltrace-python-plugin-provider.la
 endif
 
-if !BUILT_IN_PLUGINS
-libbabeltrace_la_LIBADD += \
-       $(top_builddir)/logging/libbabeltrace-logging.la \
-       $(top_builddir)/common/libbabeltrace-common.la \
-       $(top_builddir)/compat/libcompat.la
-endif
index a9bd79914f6e5de65a2dfe060dece91270a97255..27c904adc2cc85b2ed8b47fc8de7bf0afed925a5 100644 (file)
@@ -1,5 +1,9 @@
-SUBDIRS = utils cli lib bindings plugins
+SUBDIRS = utils cli lib bindings
 
 EXTRA_DIST = $(srcdir)/ctf-traces/** \
             $(srcdir)/debug-info-data/** \
             $(srcdir)/debug-info-data/.build-id/cd/**
+
+if !BUILT_IN_PLUGINS
+SUBDIRS += plugins
+endif
index 6f816f4ba9b080d3539db048afdcb1f4850b0483..ca5ffc3f6b4d46552e7ba24317a42a47266beed5 100644 (file)
@@ -1,4 +1,4 @@
-SUBDIRS = test-plugin-plugins writer .
+SUBDIRS = writer .
 
 AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils
 
@@ -17,8 +17,7 @@ test_bitfield_LDADD = $(LIBTAP) $(builddir)/libtestcommon.la
 
 test_ctf_writer_LDADD = $(COMMON_TEST_LDADD)
 
-test_bt_values_LDADD = $(LIBTAP) \
-       $(top_builddir)/lib/libbabeltrace.la
+test_bt_values_LDADD = $(COMMON_TEST_LDADD)
 
 test_ctf_ir_ref_LDADD = $(COMMON_TEST_LDADD)
 
@@ -28,8 +27,6 @@ test_ir_visit_LDADD = $(COMMON_TEST_LDADD)
 
 test_bt_notification_heap_LDADD = $(COMMON_TEST_LDADD)
 
-test_plugin_LDADD = $(COMMON_TEST_LDADD)
-
 test_graph_topo_LDADD = $(COMMON_TEST_LDADD)
 
 test_cc_prio_map_LDADD = $(COMMON_TEST_LDADD)
@@ -38,7 +35,7 @@ test_bt_notification_iterator_LDADD = $(COMMON_TEST_LDADD)
 
 noinst_PROGRAMS = test_bitfield test_ctf_writer test_bt_values \
        test_ctf_ir_ref test_bt_ctf_field_type_validation test_ir_visit \
-       test_bt_notification_heap test_plugin test_graph_topo \
+       test_bt_notification_heap test_graph_topo \
        test_cc_prio_map test_bt_notification_iterator
 
 test_bitfield_SOURCES = test_bitfield.c
@@ -48,13 +45,11 @@ test_ctf_ir_ref_SOURCES = test_ctf_ir_ref.c
 test_bt_ctf_field_type_validation_SOURCES = test_bt_ctf_field_type_validation.c
 test_ir_visit_SOURCES = test_ir_visit.c
 test_bt_notification_heap_SOURCES = test_bt_notification_heap.c
-test_plugin_SOURCES = test_plugin.c
 test_graph_topo_SOURCES = test_graph_topo.c
 test_cc_prio_map_SOURCES = test_cc_prio_map.c
 test_bt_notification_iterator_SOURCES = test_bt_notification_iterator.c
 
-check_SCRIPTS = test_ctf_writer_complete \
-               test_plugin_complete
+check_SCRIPTS = test_ctf_writer_complete
 
 #FIXME
 #if ENABLE_DEBUG_INFO
@@ -84,7 +79,6 @@ TESTS = test_bitfield \
        test_bt_ctf_field_type_validation \
        test_ir_visit \
        test_bt_notification_heap \
-       test_plugin_complete \
        test_graph_topo \
        test_cc_prio_map \
        test_bt_notification_iterator
@@ -99,3 +93,12 @@ TESTS +=
        writer/test_ctf_writer_no_packet_context.py \
        writer/test_ctf_writer_empty_packet.py
 endif
+
+if !BUILT_IN_PLUGINS
+noinst_PROGRAMS += test_plugin
+test_plugin_LDADD = $(COMMON_TEST_LDADD)
+test_plugin_SOURCES = test_plugin.c
+TESTS += test_plugin_complete
+check_SCRIPTS += test_plugin_complete
+SUBDIRS += test-plugin-plugins
+endif
index b2fd059b300634ca29c630aa5b6e84c6a8444c79..200072c09dc97566f6274444a50ffbc4b33c3297 100644 (file)
@@ -1,7 +1,11 @@
 AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include -I$(top_srcdir)/tests/utils
 
 LIBTAP=$(top_builddir)/tests/utils/tap/libtap.la
-COMMON_TEST_LDADD = $(LIBTAP) $(top_builddir)/lib/libbabeltrace.la
+COMMON_TEST_LDADD = $(LIBTAP) \
+       $(top_builddir)/lib/libbabeltrace.la \
+       $(top_builddir)/common/libbabeltrace-common.la \
+       $(top_builddir)/logging/libbabeltrace-logging.la \
+       $(top_builddir)/compat/libcompat.la
 
 noinst_PROGRAMS = test-utils-muxer
 
This page took 0.027094 seconds and 4 git commands to generate.