Fix: Handle SIGBUS in sessiond and consumerd
[lttng-tools.git] / src / bin / lttng-sessiond / Makefile.am
CommitLineData
ab5be9fa
MJ
1# SPDX-License-Identifier: GPL-2.0-only
2
343af227
MJ
3AM_CPPFLAGS +=-DINSTALL_BIN_PATH=\""$(lttnglibexecdir)"\" \
4 -DINSTALL_LIB_PATH=\""$(libdir)"\"
3f5fa9ed 5
4fc83d94
PP
6if EMBED_HELP
7AM_CPPFLAGS += -I$(top_builddir)/doc/man
8endif
9
32258573 10bin_PROGRAMS = lttng-sessiond
fac6795d 11
32258573 12lttng_sessiond_SOURCES = utils.c utils.h \
62499ad6 13 trace-kernel.c trace-kernel.h \
4771f025 14 kernel.c kernel.h \
881fc67f 15 ust-app.h ust-sigbus.h trace-ust.h notify-apps.h \
75018ab6
JG
16 lttng-ust-ctl.h lttng-ust-abi.h lttng-ust-error.h \
17 ust-ctl-internal.h ust-abi-internal.h ust-error-internal.h \
7972aab2 18 ust-registry.h \
e98a976a 19 condition-internal.c condition-internal.h \
62499ad6 20 context.c context.h \
54d01ffb
DG
21 channel.c channel.h \
22 event.c event.h \
07424f16 23 consumer.c consumer.h \
0177d773 24 session.c session.h \
096102bd 25 modprobe.c modprobe.h kern-modules.h \
f1e16794 26 fd-limit.c fd-limit.h \
0840ee7f 27 kernel-consumer.c kernel-consumer.h \
025faf73 28 consumer.h \
55d09795 29 health-sessiond.h \
8ac94142 30 cmd.c cmd.h \
7972aab2 31 buffer-registry.c buffer-registry.h \
5e97de00 32 testpoint.h ht-cleanup.c ht-cleanup.h \
0475c50c 33 snapshot.c snapshot.h \
022d91ba 34 agent.c agent.h \
ef367a93 35 save.h save.c \
0dbc2034 36 lttng-syscall.h lttng-syscall.c \
ab0ee2ca 37 notification-thread.h notification-thread.c \
8abe313a 38 notification-thread-internal.h \
ab0ee2ca 39 notification-thread-commands.h notification-thread-commands.c \
e6142f2e 40 notification-thread-events.h notification-thread-events.c \
db66e574
JD
41 sessiond-config.h sessiond-config.c \
42 rotate.h rotate.c \
d086f507 43 rotation-thread.h rotation-thread.c \
a7333da7 44 timer.c timer.h \
a7333da7
JG
45 globals.c \
46 thread-utils.c \
b878f05a 47 process-utils.c \
173fca4f 48 thread.c thread.h \
917a718d 49 health.c \
5d1b0219 50 client.c client.h \
1785d7f2 51 dispatch.c dispatch.h \
7649924e 52 register.c register.h \
5b093681 53 manage-apps.c manage-apps.h \
4ec029ed 54 manage-kernel.c manage-kernel.h \
022349df 55 manage-consumer.c manage-consumer.h \
55c9e7ca 56 clear.c clear.h \
f2b3ef9f 57 tracker.c tracker.h \
90aa04a1 58 event-notifier-error-accounting.c event-notifier-error-accounting.h \
588c4b0d
JG
59 action-executor.c action-executor.h\
60 trigger-error-query.c
fac6795d 61
38eb8a68
FD
62lttng_sessiond_LDFLAGS = -rdynamic
63
74d0b642 64if HAVE_LIBLTTNG_UST_CTL
7972aab2 65lttng_sessiond_SOURCES += trace-ust.c ust-registry.c ust-app.c \
f9d2ba6a 66 ust-consumer.c ust-consumer.h notify-apps.c \
98b73e88 67 ust-metadata.c ust-clock.h agent-thread.c agent-thread.h \
881fc67f
MD
68 ust-field-utils.h ust-field-utils.c \
69 ust-sigbus.c
3bd1e081
MD
70endif
71
48842b30 72# Add main.c at the end for compile order
32258573 73lttng_sessiond_SOURCES += lttng-sessiond.h main.c
48842b30 74
7d8234d9 75# link on liblttngctl for check if sessiond is already alive.
62b7418e 76lttng_sessiond_LDADD = -lurcu-common $(URCU_LIBS) $(KMOD_LIBS) \
10a8a223
DG
77 $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
78 $(top_builddir)/src/common/sessiond-comm/libsessiond-comm.la \
79 $(top_builddir)/src/common/kernel-ctl/libkernel-ctl.la \
80 $(top_builddir)/src/common/hashtable/libhashtable.la \
0ba98ebc 81 $(top_builddir)/src/common/libcommon.la \
00e2e675 82 $(top_builddir)/src/common/compat/libcompat.la \
8ac94142 83 $(top_builddir)/src/common/relayd/librelayd.la \
55d09795 84 $(top_builddir)/src/common/testpoint/libtestpoint.la \
26296c48 85 $(top_builddir)/src/common/health/libhealth.la \
9f449915
PP
86 $(top_builddir)/src/common/config/libconfig.la \
87 $(top_builddir)/src/common/string-utils/libstring-utils.la
26296c48 88
f158a754 89
74d0b642 90if HAVE_LIBLTTNG_UST_CTL
20dd2de1 91lttng_sessiond_LDADD += $(UST_CTL_LIBS)
f158a754 92endif
This page took 0.065904 seconds and 4 git commands to generate.