Fix builds with built-in plugins
[babeltrace.git] / cli / Makefile.am
CommitLineData
5a3ee633 1PLUGINS_PATH = $(abs_top_builddir)/plugins
c3ddb532
PP
2LTTNG_UTILS_PLUGIN_PATH =
3
4if ENABLE_DEBUG_INFO
5LTTNG_UTILS_PLUGIN_PATH += :$(PLUGINS_PATH)/lttng-utils
6endif
7
8IN_TREE_PLUGIN_PATH = $(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH)
9
98ecef32 10AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include \
c3ddb532 11 '-DCONFIG_IN_TREE_PLUGIN_PATH="$(IN_TREE_PLUGIN_PATH)"'
a2029731 12AM_LDFLAGS = -lpopt
4c8bfb7e 13
dc3fffef 14bin_PROGRAMS = babeltrace.bin
c1870f57
JG
15noinst_PROGRAMS = babeltrace
16#check_PROGRAMS = babeltrace
4c8bfb7e 17
591999ca 18babeltrace_bin_SOURCES = \
c42c79ea
PP
19 babeltrace.c \
20 babeltrace-cfg.c \
c1870f57 21 babeltrace-cfg.h \
9009cc24
PP
22 babeltrace-cfg-cli-args.c \
23 babeltrace-cfg-cli-args.h \
24 babeltrace-cfg-cli-args-connect.c \
25 babeltrace-cfg-cli-args-connect.h \
26 babeltrace-cfg-cli-args-default.h \
7213a328
PP
27 babeltrace-cfg-cli-args-default.c \
28 logging.h
847bf71a 29
e7c058b4
MD
30# -Wl,--no-as-needed is needed for recent gold linker who seems to think
31# it knows better and considers libraries with constructors having
30827463 32# side-effects as dead code.
c3ddb532
PP
33babeltrace_bin_LDFLAGS = $(LD_NO_AS_NEEDED) -Wl,-export-dynamic
34
35# Add all the convenience libraries used by Babeltrace plugins and the
36# library. They will be used when embedding plugins (BUILT_IN_PLUGINS),
37# otherwise we're looking after multiple definitions of the same symbols if
38# a plugin's archive (.a) includes the convenience library because
39# we're using --whole-archive below (needed to make sure the linker does
40# not discard the plugins since the CLI does not use their symbols
41# directly).
591999ca 42babeltrace_bin_LDADD = \
6f3077a2 43 $(top_builddir)/lib/libbabeltrace.la \
9d1e7de0 44 $(top_builddir)/compat/libcompat.la \
7213a328 45 $(top_builddir)/common/libbabeltrace-common.la \
c3ddb532
PP
46 $(top_builddir)/logging/libbabeltrace-logging.la \
47 $(top_builddir)/plugins/libctfcopytrace/libctfcopytrace.la
1e3d1cee 48
cba174d5 49if BUILT_IN_PLUGINS
c3ddb532
PP
50# Takes a plugin name and outputs the needed LDFLAGS to embed it.
51#
52# The --whole-archive option is important here. From the GNU linker's
53# documentation:
54#
55# For each archive mentioned on the command line after the
56# --whole-archive option, include every object file in the archive in
57# the link, rather than searching the archive for the required object
58# files.
59#
60# In our case, we find the plugins thanks to special sections in the
61# binary that are filled by plugin objects. If the linker discards those
62# symbols because the CLI does not use them directly, the CLI reports
63# no plugins found (plugins are effectively not embedded).
64pluginarchive = -Wl,--whole-archive,$(PLUGINS_PATH)/$(1)/.libs/libbabeltrace-plugin-$(1).a,--no-whole-archive
65
66# Built-in plugins
67babeltrace_bin_LDFLAGS += $(call pluginarchive,ctf)
68babeltrace_bin_LDFLAGS += $(call pluginarchive,text)
69babeltrace_bin_LDFLAGS += $(call pluginarchive,utils)
70
71if ENABLE_DEBUG_INFO
72babeltrace_bin_LDFLAGS += $(call pluginarchive,lttng-utils)
73endif
cba174d5
JG
74endif
75
58819898 76if BABELTRACE_BUILD_WITH_MINGW
591999ca 77babeltrace_bin_LDADD += -lrpcrt4 -lintl -liconv -lole32 -lpopt -lpthread
58819898 78endif
b545080b 79
c1870f57 80# Only used for in-tree execution and tests
9009cc24
PP
81babeltrace_SOURCES = $(babeltrace_bin_SOURCES)
82babeltrace_LDFLAGS = $(babeltrace_bin_LDFLAGS)
c1870f57
JG
83babeltrace_LDADD = $(babeltrace_bin_LDADD)
84babeltrace_CFLAGS = $(AM_CFLAGS) -DBT_SET_DEFAULT_IN_TREE_CONFIGURATION
This page took 0.04483 seconds and 4 git commands to generate.