Add --enable-asan configure option
[babeltrace.git] / src / cli / Makefile.am
CommitLineData
0235b0db
MJ
1# SPDX-License-Identifier: MIT
2
578e048b 3PLUGINS_PATH = $(abs_top_builddir)/src/plugins
c3ddb532
PP
4LTTNG_UTILS_PLUGIN_PATH =
5
6if ENABLE_DEBUG_INFO
7LTTNG_UTILS_PLUGIN_PATH += :$(PLUGINS_PATH)/lttng-utils
8endif
9
52238017
MJ
10if BABELTRACE_BUILD_WITH_MINGW
11IN_TREE_PLUGIN_PATH := $(shell cygpath -pm "$(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH)")
12else
c3ddb532 13IN_TREE_PLUGIN_PATH = $(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH)
52238017 14endif
c3ddb532 15
05c03100 16AM_CPPFLAGS += '-DCONFIG_IN_TREE_PLUGIN_PATH="$(IN_TREE_PLUGIN_PATH)"'
4c8bfb7e 17
afe821ca
MJ
18if ENABLE_PYTHON_PLUGINS
19AM_CPPFLAGS += '-DCONFIG_IN_TREE_PROVIDER_DIR="$(abs_top_builddir)/src/python-plugin-provider/.libs"'
20endif
21
bb30da78
SM
22bin_PROGRAMS = babeltrace2.bin
23noinst_PROGRAMS = babeltrace2
4c8bfb7e 24
ec2c5e50
MJ
25babeltrace2_bin_SOURCES = \
26 babeltrace2.c \
27 babeltrace2-cfg.c \
28 babeltrace2-cfg.h \
29 babeltrace2-cfg-cli-args.c \
30 babeltrace2-cfg-cli-args.h \
31 babeltrace2-cfg-cli-args-connect.c \
32 babeltrace2-cfg-cli-args-connect.h \
33 babeltrace2-cfg-cli-args-default.h \
34 babeltrace2-cfg-cli-args-default.c \
ebddaeb8
SM
35 babeltrace2-log-level.c \
36 babeltrace2-log-level.h \
743138a3
SM
37 babeltrace2-plugins.c \
38 babeltrace2-plugins.h \
3c729b9a
PP
39 babeltrace2-query.c \
40 babeltrace2-query.h \
743138a3
SM
41 logging.c \
42 logging.h
847bf71a 43
e7c058b4
MD
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
30827463 46# side-effects as dead code.
0b0893d4 47babeltrace2_bin_LDFLAGS = $(AM_LDFLAGS) $(LD_NO_AS_NEEDED)
c3ddb532
PP
48
49# Add all the convenience libraries used by Babeltrace plugins and the
9ffc0257 50# library. They will be used when embedding plugins (--enable-built-in-plugins),
c3ddb532
PP
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).
ec2c5e50 56babeltrace2_bin_LDADD = \
65966041 57 $(top_builddir)/src/argpar/libargpar.la \
97010665 58 $(top_builddir)/src/autodisc/libbabeltrace2-autodisc.la \
3725ce94 59 $(top_builddir)/src/param-parse/libbabeltrace2-param-parse.la \
ec532b44 60 $(top_builddir)/src/string-format/libbabeltrace2-string-format.la \
578e048b
MJ
61 $(top_builddir)/src/lib/libbabeltrace2.la \
62 $(top_builddir)/src/compat/libcompat.la \
63 $(top_builddir)/src/common/libbabeltrace2-common.la \
64 $(top_builddir)/src/logging/libbabeltrace2-logging.la \
3725ce94 65 $(top_builddir)/src/ctfser/libbabeltrace2-ctfser.la
1e3d1cee 66
9ffc0257 67if ENABLE_BUILT_IN_PLUGINS
c3ddb532
PP
68# Takes a plugin name and outputs the needed LDFLAGS to embed it.
69#
70# The --whole-archive option is important here. From the GNU linker's
71# documentation:
72#
73# For each archive mentioned on the command line after the
74# --whole-archive option, include every object file in the archive in
75# the link, rather than searching the archive for the required object
76# files.
77#
78# In our case, we find the plugins thanks to special sections in the
79# binary that are filled by plugin objects. If the linker discards those
80# symbols because the CLI does not use them directly, the CLI reports
81# no plugins found (plugins are effectively not embedded).
1244e794 82pluginarchive = $(LD_WHOLE_ARCHIVE)$(PLUGINS_PATH)/$(1)/.libs/babeltrace-plugin-$(1).a$(LD_NO_WHOLE_ARCHIVE)
c3ddb532
PP
83
84# Built-in plugins
ec2c5e50
MJ
85babeltrace2_bin_LDFLAGS += $(call pluginarchive,ctf)
86babeltrace2_bin_LDFLAGS += $(call pluginarchive,text)
87babeltrace2_bin_LDFLAGS += $(call pluginarchive,utils)
c3ddb532
PP
88
89if ENABLE_DEBUG_INFO
ec2c5e50
MJ
90babeltrace2_bin_LDFLAGS += $(call pluginarchive,lttng-utils)
91babeltrace2_bin_LDADD += $(ELFUTILS_LIBS)
c3ddb532 92endif
cba174d5
JG
93endif
94
58819898 95if BABELTRACE_BUILD_WITH_MINGW
ec2c5e50 96babeltrace2_bin_LDADD += -lws2_32 -lrpcrt4 -lintl -liconv -lole32 -lpthread
58819898 97endif
b545080b 98
c1870f57 99# Only used for in-tree execution and tests
ec2c5e50
MJ
100babeltrace2_SOURCES = $(babeltrace2_bin_SOURCES)
101babeltrace2_LDFLAGS = $(babeltrace2_bin_LDFLAGS)
102babeltrace2_LDADD = $(babeltrace2_bin_LDADD)
103babeltrace2_CFLAGS = $(AM_CFLAGS) -DBT_SET_DEFAULT_IN_TREE_CONFIGURATION
This page took 0.090688 seconds and 4 git commands to generate.