Tests: Add test to check shared-memory FD leaks after relayd dies
[lttng-tools.git] / src / common / Makefile.am
... / ...
CommitLineData
1# SPDX-License-Identifier: GPL-2.0-only
2
3AUTOMAKE_OPTIONS = subdir-objects
4noinst_LTLIBRARIES =
5
6BUILT_SOURCES =
7
8noinst_HEADERS = \
9 align.hpp \
10 bug.hpp \
11 defaults.hpp \
12 error.hpp \
13 futex.hpp \
14 lttng-kernel.hpp \
15 lttng-kernel-old.hpp \
16 macros.hpp \
17 time.hpp \
18 uri.hpp \
19 utils.hpp
20
21
22# libargpar
23noinst_LTLIBRARIES += libargpar.la
24libargpar_la_SOURCES = \
25 argpar/argpar.c \
26 argpar/argpar.h
27
28
29# libargpar-utils
30noinst_LTLIBRARIES += libargpar-utils.la
31libargpar_utils_la_SOURCES = \
32 argpar-utils/argpar-utils.cpp \
33 argpar-utils/argpar-utils.hpp
34
35
36# libbytecode
37noinst_LTLIBRARIES += libbytecode.la
38libbytecode_la_SOURCES = \
39 bytecode/bytecode.cpp \
40 bytecode/bytecode.hpp
41
42
43# The libcommon-lgpl static archive contains only LGPLv2.1 code. It is
44# meant to be used by LGPLv2.1 libraries such as liblttng-ctl. It also
45# contains libcommon-lgpl.la.
46
47noinst_LTLIBRARIES += libcommon-lgpl.la
48libcommon_lgpl_la_SOURCES = \
49 actions/action.cpp \
50 actions/list.cpp \
51 actions/notify.cpp \
52 actions/path.cpp \
53 actions/rotate-session.cpp \
54 actions/snapshot-session.cpp \
55 actions/start-session.cpp \
56 actions/stop-session.cpp \
57 actions/rate-policy.cpp \
58 buffer-view.hpp buffer-view.cpp \
59 channel.cpp \
60 compiler.hpp \
61 conditions/buffer-usage.cpp \
62 conditions/condition.cpp \
63 conditions/event-rule-matches.cpp \
64 conditions/session-consumed-size.cpp \
65 conditions/session-rotation.cpp \
66 container-wrapper.hpp \
67 credentials.cpp credentials.hpp \
68 defaults.cpp \
69 domain.cpp \
70 dynamic-array.cpp dynamic-array.hpp \
71 dynamic-buffer.cpp dynamic-buffer.hpp \
72 endpoint.cpp \
73 error.cpp error.hpp \
74 error-query.cpp \
75 evaluation.cpp \
76 event.cpp \
77 event-expr/event-expr.cpp \
78 event-field-value.cpp \
79 event-rule/event-rule.cpp \
80 event-rule/kernel-kprobe.cpp \
81 event-rule/kernel-syscall.cpp \
82 event-rule/kernel-uprobe.cpp \
83 event-rule/kernel-tracepoint.cpp \
84 event-rule/user-tracepoint.cpp \
85 event-rule/log4j-logging.cpp \
86 event-rule/jul-logging.cpp \
87 event-rule/python-logging.cpp \
88 exception.cpp exception.hpp \
89 file-descriptor.hpp file-descriptor.cpp \
90 fd-handle.cpp fd-handle.hpp \
91 format.hpp \
92 io-hint.cpp \
93 io-hint.hpp \
94 kernel-probe.cpp \
95 location.cpp \
96 lockfile.cpp lockfile.hpp \
97 locked-reference.hpp \
98 logging-utils.hpp logging-utils.cpp \
99 log-level-rule.cpp \
100 make-unique.hpp \
101 make-unique-wrapper.hpp \
102 mi-lttng.cpp mi-lttng.hpp \
103 notification.cpp \
104 payload.cpp payload.hpp \
105 payload-view.cpp payload-view.hpp \
106 pthread-lock.hpp \
107 random.cpp random.hpp \
108 readwrite.cpp readwrite.hpp \
109 runas.cpp runas.hpp \
110 scope-exit.hpp \
111 session-descriptor.cpp \
112 snapshot.cpp snapshot.hpp \
113 spawn-viewer.cpp spawn-viewer.hpp \
114 thread.cpp thread.hpp \
115 time.cpp \
116 tracker.cpp tracker.hpp \
117 trigger.cpp \
118 unix.cpp unix.hpp \
119 uri.cpp uri.hpp \
120 userspace-probe.cpp \
121 urcu.hpp \
122 utils.cpp utils.hpp
123
124if IS_LINUX
125libcommon_lgpl_la_SOURCES += eventfd.cpp eventfd.hpp
126endif
127
128if HAVE_ELF_H
129libcommon_lgpl_la_SOURCES += \
130 lttng-elf.cpp lttng-elf.hpp
131endif
132
133libcommon_lgpl_la_LIBADD = \
134 libbytecode.la \
135 libcompat.la \
136 libconfig.la \
137 libfilter.la \
138 libhashtable-lgpl.la \
139 $(top_builddir)/src/vendor/msgpack/libmsgpack.la
140
141
142# The libpath static archive contains GPLv2 compatible code. It is
143# meant to be used by GPL executables.
144noinst_LTLIBRARIES += libpath.la
145libpath_la_SOURCES = \
146 path.cpp path.hpp
147
148
149# The libcommon-gpl static archive contains GPLv2 compatible code. It is
150# meant to be used by GPL executables.
151noinst_LTLIBRARIES += libcommon-gpl.la
152libcommon_gpl_la_SOURCES = \
153 common.hpp \
154 context.cpp context.hpp \
155 daemonize.cpp daemonize.hpp \
156 filter.cpp filter.hpp \
157 fs-handle.cpp fs-handle.hpp fs-handle-internal.hpp \
158 futex.cpp futex.hpp \
159 index-allocator.cpp index-allocator.hpp \
160 optional.hpp \
161 pipe.cpp pipe.hpp \
162 shm.cpp shm.hpp \
163 trace-chunk.cpp trace-chunk.hpp \
164 trace-chunk-registry.hpp \
165 uuid.cpp uuid.hpp \
166 waiter.cpp waiter.hpp
167
168libcommon_gpl_la_LIBADD = \
169 libcommon-lgpl.la \
170 libpath.la \
171 libini-config.la \
172 libhashtable-gpl.la \
173 libfd-tracker.la
174
175
176# libcompat
177noinst_LTLIBRARIES += libcompat.la
178libcompat_la_SOURCES = \
179 compat/directory-handle.cpp \
180 compat/directory-handle.hpp \
181 compat/dirent.hpp \
182 compat/endian.hpp \
183 compat/errno.hpp \
184 compat/getenv.hpp \
185 compat/mman.hpp \
186 compat/netdb.hpp \
187 compat/path.hpp \
188 compat/paths.hpp \
189 compat/poll.cpp \
190 compat/poll.hpp \
191 compat/pthread.hpp \
192 compat/socket.hpp \
193 compat/string.hpp \
194 compat/tid.hpp \
195 compat/time.hpp
196
197
198# libconfig
199noinst_LTLIBRARIES += libconfig.la
200libconfig_la_SOURCES = \
201 config/config-internal.hpp \
202 config/config-session-abi.hpp \
203 config/session-config.cpp \
204 config/session-config.hpp
205
206libconfig_la_CPPFLAGS = $(libxml2_CFLAGS) $(AM_CPPFLAGS)
207libconfig_la_LIBADD = ${libxml2_LIBS}
208
209
210if BUILD_LIB_CONSUMER
211noinst_LTLIBRARIES += libconsumer.la
212
213libconsumer_la_SOURCES = \
214 consumer/consumer.cpp \
215 consumer/consumer.hpp \
216 consumer/consumer-metadata-cache.cpp \
217 consumer/consumer-metadata-cache.hpp \
218 consumer/consumer-stream.cpp \
219 consumer/consumer-stream.hpp \
220 consumer/consumer-testpoint.hpp \
221 consumer/consumer-timer.cpp \
222 consumer/consumer-timer.hpp \
223 consumer/metadata-bucket.cpp \
224 consumer/metadata-bucket.hpp
225
226libconsumer_la_LIBADD = \
227 libkernel-consumer.la \
228 librelayd.la \
229 libsessiond-comm.la
230
231if HAVE_LIBLTTNG_UST_CTL
232libconsumer_la_LIBADD += \
233 libust-consumer.la
234endif
235endif # BUILD_LIB_CONSUMER
236
237
238# libfd-tracker
239noinst_LTLIBRARIES += libfd-tracker.la
240libfd_tracker_la_SOURCES = \
241 fd-tracker/fd-tracker.cpp \
242 fd-tracker/fd-tracker.hpp \
243 fd-tracker/inode.cpp \
244 fd-tracker/inode.hpp \
245 fd-tracker/utils.cpp \
246 fd-tracker/utils.hpp \
247 fd-tracker/utils-poll.cpp
248
249
250# libfilter
251noinst_LTLIBRARIES += libfilter.la
252
253libfilter_la_SOURCES = \
254 filter/filter-ast.hpp \
255 filter/filter-ir.hpp \
256 filter/filter-lexer.lpp \
257 filter/filter-parser.ypp \
258 filter/filter-symbols.hpp \
259 filter/filter-visitor-generate-bytecode.cpp \
260 filter/filter-visitor-generate-ir.cpp \
261 filter/filter-visitor-ir-check-binary-op-nesting.cpp \
262 filter/filter-visitor-ir-normalize-glob-patterns.cpp \
263 filter/filter-visitor-ir-validate-globbing.cpp \
264 filter/filter-visitor-ir-validate-string.cpp \
265 filter/filter-visitor-xml.cpp \
266 filter/memstream.hpp
267
268BUILT_SOURCES += filter/filter-parser.hpp
269
270# Disable some warning flags for generated sources.
271FILTER_WARN_FLAGS = \
272 -Wno-null-dereference \
273 -Wno-redundant-decls \
274 -Wno-unused-parameter
275
276libfilter_la_CFLAGS = $(AM_CFLAGS) $(FILTER_WARN_FLAGS)
277libfilter_la_CXXFLAGS = -include filter-symbols.hpp $(AM_CXXFLAGS) $(FILTER_WARN_FLAGS)
278libfilter_la_CPPFLAGS = -I$(srcdir)/filter -I$(builddir)/filter $(AM_CPPFLAGS)
279libfilter_la_LIBADD = libstring-utils.la
280
281AM_YFLAGS = -t -d -v -Wno-yacc
282
283# start with empty files to clean
284CLEANFILES =
285
286if HAVE_BISON
287# we have bison: we can clean the generated parser files
288CLEANFILES += \
289 filter/filter-parser.cpp \
290 filter/filter-parser.hpp \
291 filter/filter-parser.output
292else # HAVE_BISON
293# create target used to stop the build if we want to build the parser,
294# but we don't have the necessary tool to do so
295filter/filter-parser.cpp filter/filter-parser.hpp: filter/filter-parser.ypp
296 @echo "Error: Cannot build target because bison is missing."
297 @echo "Make sure bison is installed and run the configure script again."
298 @false
299
300BUILT_SOURCES += filter/filter-parser.cpp filter/filter-parser.hpp
301endif # HAVE_BISON
302
303if HAVE_FLEX
304# we have flex: we can clean the generated lexer files
305CLEANFILES += filter/filter-lexer.cpp
306else # HAVE_FLEX
307# create target used to stop the build if we want to build the lexer,
308# but we don't have the necessary tool to do so
309filter/filter-lexer.cpp: filter/filter-lexer.lpp
310 @echo "Error: Cannot build target because flex is missing."
311 @echo "Make sure flex is installed and run the configure script again."
312 @false
313
314BUILT_SOURCES += filter/filter-lexer.cpp
315endif # HAVE_FLEX
316
317
318noinst_LTLIBRARIES += libhashtable-lgpl.la
319libhashtable_lgpl_la_SOURCES = \
320 hashtable/seed.cpp \
321 hashtable/utils.cpp \
322 hashtable/utils.hpp
323
324
325noinst_LTLIBRARIES += libhashtable-gpl.la
326libhashtable_gpl_la_SOURCES = \
327 hashtable/hashtable.cpp \
328 hashtable/hashtable.hpp \
329 hashtable/hashtable-symbols.hpp
330
331libhashtable_gpl_la_LIBADD = \
332 $(URCU_LIBS) \
333 $(URCU_CDS_LIBS)
334
335
336if BUILD_LIB_HEALTH
337noinst_LTLIBRARIES += libhealth.la
338
339libhealth_la_SOURCES = \
340 health/health.cpp
341endif
342
343
344# libini-config
345noinst_LTLIBRARIES += libini-config.la
346libini_config_la_SOURCES = \
347 ini-config/ini.cpp \
348 ini-config/ini.hpp \
349 ini-config/ini-config.cpp \
350 ini-config/ini-config.hpp
351
352
353if BUILD_LIB_INDEX
354noinst_LTLIBRARIES += libindex.la
355
356libindex_la_SOURCES = \
357 index/ctf-index.hpp \
358 index/index.cpp \
359 index/index.hpp
360endif
361
362
363if BUILD_LIB_KERNEL_CTL
364noinst_LTLIBRARIES += libkernel-ctl.la
365
366libkernel_ctl_la_SOURCES = \
367 kernel-ctl/kernel-ctl.cpp \
368 kernel-ctl/kernel-ctl.hpp \
369 kernel-ctl/kernel-ioctl.hpp
370endif
371
372if BUILD_LIB_SESSIOND_COMM
373noinst_LTLIBRARIES += libsessiond-comm.la
374
375libsessiond_comm_la_SOURCES = \
376 sessiond-comm/agent.hpp \
377 sessiond-comm/inet.cpp \
378 sessiond-comm/inet.hpp \
379 sessiond-comm/inet6.cpp \
380 sessiond-comm/inet6.hpp \
381 sessiond-comm/relayd.hpp \
382 sessiond-comm/sessiond-comm.cpp \
383 sessiond-comm/sessiond-comm.hpp
384endif
385
386if BUILD_LIB_RELAYD
387noinst_LTLIBRARIES += librelayd.la
388
389librelayd_la_SOURCES = \
390 relayd/relayd.cpp \
391 relayd/relayd.hpp
392
393librelayd_la_LIBADD = libsessiond-comm.la
394endif
395
396
397if BUILD_LIB_KERNEL_CONSUMER
398noinst_LTLIBRARIES += libkernel-consumer.la
399
400libkernel_consumer_la_SOURCES = \
401 kernel-consumer/kernel-consumer.cpp \
402 kernel-consumer/kernel-consumer.hpp
403
404libkernel_consumer_la_LIBADD = \
405 libkernel-ctl.la
406endif
407
408if BUILD_LIB_UST_CONSUMER
409if HAVE_LIBLTTNG_UST_CTL
410noinst_LTLIBRARIES += libust-consumer.la
411
412libust_consumer_la_SOURCES = \
413 ust-consumer/ust-consumer.cpp \
414 ust-consumer/ust-consumer.hpp
415
416libust_consumer_la_LIBADD = \
417 $(UST_CTL_LIBS)
418endif
419endif
420
421if BUILD_LIB_TESTPOINT
422noinst_LTLIBRARIES += libtestpoint.la
423
424libtestpoint_la_SOURCES = \
425 testpoint/testpoint.cpp \
426 testpoint/testpoint.hpp
427
428libtestpoint_la_LIBADD = $(DL_LIBS)
429endif
430
431
432# libstring-utils
433noinst_LTLIBRARIES += libstring-utils.la
434libstring_utils_la_SOURCES = \
435 string-utils/format.hpp \
436 string-utils/string-utils.cpp \
437 string-utils/string-utils.hpp
438
439
440noinst_PROGRAMS = filter-grammar-test
441filter_grammar_test_SOURCES = filter-grammar-test.cpp
442filter_grammar_test_LDADD = libcommon-gpl.la
443
444EXTRA_DIST = \
445 mi-lttng-4.1.xsd \
446 session.xsd
447
448xmldir = $(datadir)/xml/lttng
449dist_xml_DATA = session.xsd
450
451# Copy EXTRA_DIST files to the build directory
452all-local:
453 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
454 for script in $(EXTRA_DIST); do \
455 cp -f $(srcdir)/$$script $(builddir); \
456 done; \
457 fi
458
459clean-local:
460 @if [ x"$(srcdir)" != x"$(builddir)" ]; then \
461 for script in $(EXTRA_DIST); do \
462 rm -f $(builddir)/$$script; \
463 done; \
464 fi
This page took 0.024727 seconds and 5 git commands to generate.