Commit | Line | Data |
---|---|---|
5a3ee633 | 1 | PLUGINS_PATH = $(abs_top_builddir)/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 | |
899a1d74 PP |
16 | bin_PROGRAMS = babeltrace.bin babeltrace-log.bin |
17 | noinst_PROGRAMS = babeltrace babeltrace-log | |
4c8bfb7e | 18 | |
591999ca | 19 | babeltrace_bin_SOURCES = \ |
c42c79ea PP |
20 | babeltrace.c \ |
21 | babeltrace-cfg.c \ | |
c1870f57 | 22 | babeltrace-cfg.h \ |
9009cc24 PP |
23 | babeltrace-cfg-cli-args.c \ |
24 | babeltrace-cfg-cli-args.h \ | |
25 | babeltrace-cfg-cli-args-connect.c \ | |
26 | babeltrace-cfg-cli-args-connect.h \ | |
27 | babeltrace-cfg-cli-args-default.h \ | |
7213a328 | 28 | babeltrace-cfg-cli-args-default.c \ |
ea9f8b29 | 29 | logging.c logging.h |
847bf71a | 30 | |
e7c058b4 MD |
31 | # -Wl,--no-as-needed is needed for recent gold linker who seems to think |
32 | # it knows better and considers libraries with constructors having | |
30827463 | 33 | # side-effects as dead code. |
f20cba2d | 34 | babeltrace_bin_LDFLAGS = $(LD_NO_AS_NEEDED) |
c3ddb532 PP |
35 | |
36 | # Add all the convenience libraries used by Babeltrace plugins and the | |
9ffc0257 | 37 | # library. They will be used when embedding plugins (--enable-built-in-plugins), |
c3ddb532 PP |
38 | # otherwise we're looking after multiple definitions of the same symbols if |
39 | # a plugin's archive (.a) includes the convenience library because | |
40 | # we're using --whole-archive below (needed to make sure the linker does | |
41 | # not discard the plugins since the CLI does not use their symbols | |
42 | # directly). | |
591999ca | 43 | babeltrace_bin_LDADD = \ |
6f3077a2 | 44 | $(top_builddir)/lib/libbabeltrace.la \ |
9d1e7de0 | 45 | $(top_builddir)/compat/libcompat.la \ |
7213a328 | 46 | $(top_builddir)/common/libbabeltrace-common.la \ |
c3ddb532 | 47 | $(top_builddir)/logging/libbabeltrace-logging.la \ |
4817cd5b MJ |
48 | $(top_builddir)/plugins/libctfcopytrace/libctfcopytrace.la \ |
49 | $(POPT_LIBS) | |
1e3d1cee | 50 | |
9ffc0257 | 51 | if ENABLE_BUILT_IN_PLUGINS |
c3ddb532 PP |
52 | # Takes a plugin name and outputs the needed LDFLAGS to embed it. |
53 | # | |
54 | # The --whole-archive option is important here. From the GNU linker's | |
55 | # documentation: | |
56 | # | |
57 | # For each archive mentioned on the command line after the | |
58 | # --whole-archive option, include every object file in the archive in | |
59 | # the link, rather than searching the archive for the required object | |
60 | # files. | |
61 | # | |
62 | # In our case, we find the plugins thanks to special sections in the | |
63 | # binary that are filled by plugin objects. If the linker discards those | |
64 | # symbols because the CLI does not use them directly, the CLI reports | |
65 | # no plugins found (plugins are effectively not embedded). | |
63e5d159 | 66 | pluginarchive = -Wl,--whole-archive,$(PLUGINS_PATH)/$(1)/.libs/babeltrace-plugin-$(1).a,--no-whole-archive |
c3ddb532 PP |
67 | |
68 | # Built-in plugins | |
69 | babeltrace_bin_LDFLAGS += $(call pluginarchive,ctf) | |
70 | babeltrace_bin_LDFLAGS += $(call pluginarchive,text) | |
71 | babeltrace_bin_LDFLAGS += $(call pluginarchive,utils) | |
72 | ||
73 | if ENABLE_DEBUG_INFO | |
74 | babeltrace_bin_LDFLAGS += $(call pluginarchive,lttng-utils) | |
75 | endif | |
cba174d5 JG |
76 | endif |
77 | ||
58819898 | 78 | if BABELTRACE_BUILD_WITH_MINGW |
4817cd5b | 79 | babeltrace_bin_LDADD += -lws2_32 -lrpcrt4 -lintl -liconv -lole32 -lpthread |
58819898 | 80 | endif |
b545080b | 81 | |
c1870f57 | 82 | # Only used for in-tree execution and tests |
9009cc24 PP |
83 | babeltrace_SOURCES = $(babeltrace_bin_SOURCES) |
84 | babeltrace_LDFLAGS = $(babeltrace_bin_LDFLAGS) | |
c1870f57 JG |
85 | babeltrace_LDADD = $(babeltrace_bin_LDADD) |
86 | babeltrace_CFLAGS = $(AM_CFLAGS) -DBT_SET_DEFAULT_IN_TREE_CONFIGURATION | |
899a1d74 PP |
87 | |
88 | # babeltrace-log rules and config below | |
89 | babeltrace_log_bin_SOURCES = babeltrace-log.c | |
4817cd5b MJ |
90 | babeltrace_log_bin_LDADD = \ |
91 | $(top_builddir)/compat/libcompat.la \ | |
92 | $(POPT_LIBS) | |
899a1d74 PP |
93 | babeltrace_log_bin_CFLAGS = $(AM_CFLAGS) '-DBT_CLI_PATH="$(abs_top_builddir)/cli/babeltrace$(EXEEXT)"' |
94 | ||
4817cd5b | 95 | # Only used for in-tree execution and tests |
899a1d74 PP |
96 | babeltrace_log_SOURCES = $(babeltrace_log_bin_SOURCES) |
97 | babeltrace_log_LDADD = $(babeltrace_log_bin_LDADD) | |
98 | babeltrace_log_CFLAGS = $(AM_CFLAGS) '-DBT_CLI_PATH="$(bindir)/babeltrace$(EXEEXT)"' |