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