Commit | Line | Data |
---|---|---|
578e048b | 1 | PLUGINS_PATH = $(abs_top_builddir)/src/plugins |
c3ddb532 PP |
2 | LTTNG_UTILS_PLUGIN_PATH = |
3 | ||
4 | if ENABLE_DEBUG_INFO | |
5 | LTTNG_UTILS_PLUGIN_PATH += :$(PLUGINS_PATH)/lttng-utils | |
6 | endif | |
7 | ||
52238017 MJ |
8 | if BABELTRACE_BUILD_WITH_MINGW |
9 | IN_TREE_PLUGIN_PATH := $(shell cygpath -pm "$(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH)") | |
10 | else | |
c3ddb532 | 11 | IN_TREE_PLUGIN_PATH = $(PLUGINS_PATH)/ctf:$(PLUGINS_PATH)/text:$(PLUGINS_PATH)/utils$(LTTNG_UTILS_PLUGIN_PATH) |
52238017 | 12 | endif |
c3ddb532 | 13 | |
05c03100 | 14 | AM_CPPFLAGS += '-DCONFIG_IN_TREE_PLUGIN_PATH="$(IN_TREE_PLUGIN_PATH)"' |
4c8bfb7e | 15 | |
afe821ca MJ |
16 | if ENABLE_PYTHON_PLUGINS |
17 | AM_CPPFLAGS += '-DCONFIG_IN_TREE_PROVIDER_DIR="$(abs_top_builddir)/src/python-plugin-provider/.libs"' | |
18 | endif | |
19 | ||
bb30da78 SM |
20 | bin_PROGRAMS = babeltrace2.bin |
21 | noinst_PROGRAMS = babeltrace2 | |
4c8bfb7e | 22 | |
ec2c5e50 MJ |
23 | babeltrace2_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 \ | |
8bd04432 PP |
33 | babeltrace2-cfg-cli-params-arg.c \ |
34 | babeltrace2-cfg-cli-params-arg.h \ | |
743138a3 SM |
35 | babeltrace2-plugins.c \ |
36 | babeltrace2-plugins.h \ | |
3c729b9a PP |
37 | babeltrace2-query.c \ |
38 | babeltrace2-query.h \ | |
743138a3 SM |
39 | logging.c \ |
40 | logging.h | |
847bf71a | 41 | |
e7c058b4 MD |
42 | # -Wl,--no-as-needed is needed for recent gold linker who seems to think |
43 | # it knows better and considers libraries with constructors having | |
30827463 | 44 | # side-effects as dead code. |
ec2c5e50 | 45 | babeltrace2_bin_LDFLAGS = $(LD_NO_AS_NEEDED) |
c3ddb532 PP |
46 | |
47 | # Add all the convenience libraries used by Babeltrace plugins and the | |
9ffc0257 | 48 | # library. They will be used when embedding plugins (--enable-built-in-plugins), |
c3ddb532 PP |
49 | # otherwise we're looking after multiple definitions of the same symbols if |
50 | # a plugin's archive (.a) includes the convenience library because | |
51 | # we're using --whole-archive below (needed to make sure the linker does | |
52 | # not discard the plugins since the CLI does not use their symbols | |
53 | # directly). | |
ec2c5e50 | 54 | babeltrace2_bin_LDADD = \ |
0e497e1c | 55 | $(top_builddir)/src/argpar/libbabeltrace2-argpar.la \ |
97010665 | 56 | $(top_builddir)/src/autodisc/libbabeltrace2-autodisc.la \ |
578e048b MJ |
57 | $(top_builddir)/src/lib/libbabeltrace2.la \ |
58 | $(top_builddir)/src/compat/libcompat.la \ | |
59 | $(top_builddir)/src/common/libbabeltrace2-common.la \ | |
60 | $(top_builddir)/src/logging/libbabeltrace2-logging.la \ | |
916d0d91 | 61 | $(top_builddir)/src/ctfser/libbabeltrace2-ctfser.la |
1e3d1cee | 62 | |
9ffc0257 | 63 | if ENABLE_BUILT_IN_PLUGINS |
c3ddb532 PP |
64 | # Takes a plugin name and outputs the needed LDFLAGS to embed it. |
65 | # | |
66 | # The --whole-archive option is important here. From the GNU linker's | |
67 | # documentation: | |
68 | # | |
69 | # For each archive mentioned on the command line after the | |
70 | # --whole-archive option, include every object file in the archive in | |
71 | # the link, rather than searching the archive for the required object | |
72 | # files. | |
73 | # | |
74 | # In our case, we find the plugins thanks to special sections in the | |
75 | # binary that are filled by plugin objects. If the linker discards those | |
76 | # symbols because the CLI does not use them directly, the CLI reports | |
77 | # no plugins found (plugins are effectively not embedded). | |
1244e794 | 78 | pluginarchive = $(LD_WHOLE_ARCHIVE)$(PLUGINS_PATH)/$(1)/.libs/babeltrace-plugin-$(1).a$(LD_NO_WHOLE_ARCHIVE) |
c3ddb532 PP |
79 | |
80 | # Built-in plugins | |
ec2c5e50 MJ |
81 | babeltrace2_bin_LDFLAGS += $(call pluginarchive,ctf) |
82 | babeltrace2_bin_LDFLAGS += $(call pluginarchive,text) | |
83 | babeltrace2_bin_LDFLAGS += $(call pluginarchive,utils) | |
c3ddb532 PP |
84 | |
85 | if ENABLE_DEBUG_INFO | |
ec2c5e50 MJ |
86 | babeltrace2_bin_LDFLAGS += $(call pluginarchive,lttng-utils) |
87 | babeltrace2_bin_LDADD += $(ELFUTILS_LIBS) | |
c3ddb532 | 88 | endif |
cba174d5 JG |
89 | endif |
90 | ||
58819898 | 91 | if BABELTRACE_BUILD_WITH_MINGW |
ec2c5e50 | 92 | babeltrace2_bin_LDADD += -lws2_32 -lrpcrt4 -lintl -liconv -lole32 -lpthread |
58819898 | 93 | endif |
b545080b | 94 | |
c1870f57 | 95 | # Only used for in-tree execution and tests |
ec2c5e50 MJ |
96 | babeltrace2_SOURCES = $(babeltrace2_bin_SOURCES) |
97 | babeltrace2_LDFLAGS = $(babeltrace2_bin_LDFLAGS) | |
98 | babeltrace2_LDADD = $(babeltrace2_bin_LDADD) | |
99 | babeltrace2_CFLAGS = $(AM_CFLAGS) -DBT_SET_DEFAULT_IN_TREE_CONFIGURATION |