tests: make auto-source-discovery-{log_level,params} tests use sink.text.details
[babeltrace.git] / src / cli / Makefile.am
... / ...
CommitLineData
1PLUGINS_PATH = $(abs_top_builddir)/src/plugins
2LTTNG_UTILS_PLUGIN_PATH =
3
4if ENABLE_DEBUG_INFO
5LTTNG_UTILS_PLUGIN_PATH += :$(PLUGINS_PATH)/lttng-utils
6endif
7
8if BABELTRACE_BUILD_WITH_MINGW
9IN_TREE_PLUGIN_PATH := $(shell cygpath -pm "$(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH)")
10else
11IN_TREE_PLUGIN_PATH = $(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH)
12endif
13
14AM_CPPFLAGS += '-DCONFIG_IN_TREE_PLUGIN_PATH="$(IN_TREE_PLUGIN_PATH)"'
15
16if ENABLE_PYTHON_PLUGINS
17AM_CPPFLAGS += '-DCONFIG_IN_TREE_PROVIDER_DIR="$(abs_top_builddir)/src/python-plugin-provider/.libs"'
18endif
19
20bin_PROGRAMS = babeltrace2.bin
21noinst_PROGRAMS = babeltrace2
22
23babeltrace2_bin_SOURCES = \
24 babeltrace2.c \
25 babeltrace2-cfg.c \
26 babeltrace2-cfg.h \
27 babeltrace2-cfg-cli-args.c \
28 babeltrace2-cfg-cli-args.h \
29 babeltrace2-cfg-cli-args-connect.c \
30 babeltrace2-cfg-cli-args-connect.h \
31 babeltrace2-cfg-cli-args-default.h \
32 babeltrace2-cfg-cli-args-default.c \
33 babeltrace2-cfg-cli-params-arg.c \
34 babeltrace2-cfg-cli-params-arg.h \
35 babeltrace2-cfg-src-auto-disc.c \
36 babeltrace2-cfg-src-auto-disc.h \
37 babeltrace2-plugins.c \
38 babeltrace2-plugins.h \
39 babeltrace2-query.c \
40 babeltrace2-query.h \
41 logging.c \
42 logging.h
43
44# -Wl,--no-as-needed is needed for recent gold linker who seems to think
45# it knows better and considers libraries with constructors having
46# side-effects as dead code.
47babeltrace2_bin_LDFLAGS = $(LD_NO_AS_NEEDED)
48
49# Add all the convenience libraries used by Babeltrace plugins and the
50# library. They will be used when embedding plugins (--enable-built-in-plugins),
51# otherwise we're looking after multiple definitions of the same symbols if
52# a plugin's archive (.a) includes the convenience library because
53# we're using --whole-archive below (needed to make sure the linker does
54# not discard the plugins since the CLI does not use their symbols
55# directly).
56babeltrace2_bin_LDADD = \
57 $(top_builddir)/src/argpar/libbabeltrace2-argpar.la \
58 $(top_builddir)/src/lib/libbabeltrace2.la \
59 $(top_builddir)/src/compat/libcompat.la \
60 $(top_builddir)/src/common/libbabeltrace2-common.la \
61 $(top_builddir)/src/logging/libbabeltrace2-logging.la \
62 $(top_builddir)/src/ctfser/libbabeltrace2-ctfser.la
63
64if ENABLE_BUILT_IN_PLUGINS
65# Takes a plugin name and outputs the needed LDFLAGS to embed it.
66#
67# The --whole-archive option is important here. From the GNU linker's
68# documentation:
69#
70# For each archive mentioned on the command line after the
71# --whole-archive option, include every object file in the archive in
72# the link, rather than searching the archive for the required object
73# files.
74#
75# In our case, we find the plugins thanks to special sections in the
76# binary that are filled by plugin objects. If the linker discards those
77# symbols because the CLI does not use them directly, the CLI reports
78# no plugins found (plugins are effectively not embedded).
79pluginarchive = $(LD_WHOLE_ARCHIVE)$(PLUGINS_PATH)/$(1)/.libs/babeltrace-plugin-$(1).a$(LD_NO_WHOLE_ARCHIVE)
80
81# Built-in plugins
82babeltrace2_bin_LDFLAGS += $(call pluginarchive,ctf)
83babeltrace2_bin_LDFLAGS += $(call pluginarchive,text)
84babeltrace2_bin_LDFLAGS += $(call pluginarchive,utils)
85
86if ENABLE_DEBUG_INFO
87babeltrace2_bin_LDFLAGS += $(call pluginarchive,lttng-utils)
88babeltrace2_bin_LDADD += $(ELFUTILS_LIBS)
89endif
90endif
91
92if BABELTRACE_BUILD_WITH_MINGW
93babeltrace2_bin_LDADD += -lws2_32 -lrpcrt4 -lintl -liconv -lole32 -lpthread
94endif
95
96# Only used for in-tree execution and tests
97babeltrace2_SOURCES = $(babeltrace2_bin_SOURCES)
98babeltrace2_LDFLAGS = $(babeltrace2_bin_LDFLAGS)
99babeltrace2_LDADD = $(babeltrace2_bin_LDADD)
100babeltrace2_CFLAGS = $(AM_CFLAGS) -DBT_SET_DEFAULT_IN_TREE_CONFIGURATION
This page took 0.022519 seconds and 4 git commands to generate.