cpp-common: add `logging.hpp` (`bt2c::Logger` and BT_CPPLOG*() macros)
[babeltrace.git] / src / Makefile.am
1 # SPDX-FileCopyrightText: 2019-2023 EfficiOS, Inc.
2 # SPDX-License-Identifier: MIT
3
4 # Build the current dir containing the library and plugins before the cli and
5 # bindings.
6 SUBDIRS = \
7 . \
8 cli
9
10 if ENABLE_PYTHON_BINDINGS
11 SUBDIRS += bindings/python/bt2
12 endif
13
14 noinst_HEADERS = \
15 cpp-common/bt2/borrowed-object-iterator.hpp \
16 cpp-common/bt2/borrowed-object-proxy.hpp \
17 cpp-common/bt2/borrowed-object.hpp \
18 cpp-common/bt2/clock-class.hpp \
19 cpp-common/bt2/clock-snapshot.hpp \
20 cpp-common/bt2/component-port.hpp \
21 cpp-common/bt2/exc.hpp \
22 cpp-common/bt2/field-class.hpp \
23 cpp-common/bt2/field-path.hpp \
24 cpp-common/bt2/field.hpp \
25 cpp-common/bt2/integer-range-set.hpp \
26 cpp-common/bt2/integer-range.hpp \
27 cpp-common/bt2/internal/utils.hpp \
28 cpp-common/bt2/logging.hpp \
29 cpp-common/bt2/message-array.hpp \
30 cpp-common/bt2/message-iterator.hpp \
31 cpp-common/bt2/message.hpp \
32 cpp-common/bt2/shared-object.hpp \
33 cpp-common/bt2/raw-value-proxy.hpp \
34 cpp-common/bt2/private-query-executor.hpp \
35 cpp-common/bt2/self-component-class.hpp \
36 cpp-common/bt2/self-component-port.hpp \
37 cpp-common/bt2/self-message-iterator-configuration.hpp \
38 cpp-common/bt2/self-message-iterator.hpp \
39 cpp-common/bt2/shared-object.hpp \
40 cpp-common/bt2/trace-ir.hpp \
41 cpp-common/bt2/type-traits.hpp \
42 cpp-common/bt2/value.hpp \
43 cpp-common/bt2/wrap.hpp \
44 cpp-common/bt2c/align.hpp \
45 cpp-common/bt2c/endian.hpp \
46 cpp-common/bt2c/exc.hpp \
47 cpp-common/bt2c/glib-up.hpp \
48 cpp-common/bt2c/lib-str.hpp \
49 cpp-common/bt2c/libc-up.hpp \
50 cpp-common/bt2c/logging.hpp \
51 cpp-common/bt2c/read-fixed-len-int.hpp \
52 cpp-common/bt2c/safe-ops.hpp \
53 cpp-common/bt2c/std-int.hpp \
54 cpp-common/bt2c/uuid-view.hpp \
55 cpp-common/bt2c/uuid.hpp \
56 cpp-common/bt2c/vector.hpp \
57 cpp-common/bt2s/make-unique.hpp \
58 cpp-common/bt2s/optional.hpp \
59 cpp-common/bt2s/string-view.hpp \
60 cpp-common/vendor/nlohmann/json.hpp \
61 cpp-common/vendor/optional-lite/optional.hpp \
62 cpp-common/vendor/string_view-standalone/string_view.hpp
63
64 ## This target generates an include file that contains the git version
65 ## string of the current branch, it must be continuously updated when
66 ## we build in the git repo and shipped in dist tarballs to reflect the
67 ## status of the tree when it was generated. If the tree is clean and
68 ## the current commit is a tag starting with "v", consider this a
69 ## release version and set an empty git version.
70
71 version_verbose = $(version_verbose_@AM_V@)
72 version_verbose_ = $(version_verbose_@AM_DEFAULT_V@)
73 version_verbose_0 = @echo " GEN " $@;
74
75 common/version.i:
76 $(version_verbose)GREP=$(GREP) SED=$(SED) TOP_SRCDIR="$(top_srcdir)" $(SHELL) $(srcdir)/gen-version-i.sh
77
78 dist_noinst_SCRIPTS = gen-version-i.sh
79
80 # Ensure version.i is generated before any code is built.
81 BUILT_SOURCES = common/version.i
82
83 ##
84 ## version.i is defined as a .PHONY target even if it's a real file,
85 ## we want the target to be re-run on every make.
86 ##
87 .PHONY: common/version.i
88
89 CLEANFILES = common/version.i.tmp
90
91 ##
92 ## Only clean "version.i" on dist-clean, we need to keep it on regular
93 ## clean when it's part of a dist tarball.
94 ##
95 DISTCLEANFILES = common/version.i
96
97 #
98 # Convenience libraries
99 #
100
101 noinst_LTLIBRARIES = \
102 argpar/libargpar.la \
103 autodisc/libautodisc.la \
104 common/libcommon.la \
105 compat/libcompat.la \
106 cpp-common/vendor/fmt/libfmt.la \
107 ctfser/libctfser.la \
108 fd-cache/libfd-cache.la \
109 logging/liblogging.la \
110 param-parse/libparam-parse.la \
111 plugins/common/muxing/libmuxing.la \
112 plugins/common/param-validation/libparam-validation.la \
113 plugins/ctf/common/metadata/libctf-ast.la \
114 plugins/ctf/common/metadata/libctf-parser.la \
115 string-format/libstring-format.la
116
117
118 argpar_libargpar_la_SOURCES = \
119 argpar/argpar.c \
120 argpar/argpar.h
121
122 autodisc_libautodisc_la_SOURCES = \
123 autodisc/autodisc.c \
124 autodisc/autodisc.h
125
126 common_libcommon_la_SOURCES = \
127 common/align.h \
128 common/assert.c \
129 common/assert.h \
130 common/common.c \
131 common/common.h \
132 common/list.h \
133 common/macros.h \
134 common/mmap-align.h \
135 common/safe.h \
136 common/uuid.c \
137 common/uuid.h \
138 common/version.h \
139 common/version.i
140
141 common_libcommon_la_CPPFLAGS = \
142 $(AM_CPPFLAGS) \
143 -DBABELTRACE_PLUGINS_DIR=\"$(BABELTRACE_PLUGINS_DIR)\"
144
145 compat_libcompat_la_SOURCES = \
146 compat/bitfield.h \
147 compat/compiler.h \
148 compat/endian.h \
149 compat/fcntl.h \
150 compat/glib.h \
151 compat/limits.h \
152 compat/memstream.h \
153 compat/mman.c \
154 compat/mman.h \
155 compat/socket.h \
156 compat/stdio.h \
157 compat/stdlib.h \
158 compat/string.h \
159 compat/time.h \
160 compat/unistd.h \
161 compat/utc.h
162
163 cpp_common_vendor_fmt_libfmt_la_SOURCES = \
164 cpp-common/vendor/fmt/args.h \
165 cpp-common/vendor/fmt/chrono.h \
166 cpp-common/vendor/fmt/color.h \
167 cpp-common/vendor/fmt/compile.h \
168 cpp-common/vendor/fmt/core.h \
169 cpp-common/vendor/fmt/format-inl.h \
170 cpp-common/vendor/fmt/format.cc \
171 cpp-common/vendor/fmt/format.h \
172 cpp-common/vendor/fmt/os.cc \
173 cpp-common/vendor/fmt/os.h \
174 cpp-common/vendor/fmt/ostream.h \
175 cpp-common/vendor/fmt/printf.h \
176 cpp-common/vendor/fmt/ranges.h \
177 cpp-common/vendor/fmt/std.h \
178 cpp-common/vendor/fmt/xchar.h
179
180 ctfser_libctfser_la_SOURCES = \
181 ctfser/ctfser.c \
182 ctfser/ctfser.h
183
184 fd_cache_libfd_cache_la_SOURCES = \
185 fd-cache/fd-cache.c \
186 fd-cache/fd-cache.h
187
188 logging_liblogging_la_SOURCES = \
189 logging/comp-logging.h \
190 logging/log-api.c \
191 logging/log-api.h \
192 logging/log.h
193
194 param_parse_libparam_parse_la_SOURCES = \
195 param-parse/param-parse.c \
196 param-parse/param-parse.h
197
198 string_format_libstring_format_la_SOURCES = \
199 string-format/format-plugin-comp-cls-name.c \
200 string-format/format-plugin-comp-cls-name.h \
201 string-format/format-error.c \
202 string-format/format-error.h
203
204 plugins_common_muxing_libmuxing_la_SOURCES = \
205 plugins/common/muxing/muxing.c \
206 plugins/common/muxing/muxing.h
207
208 plugins_common_param_validation_libparam_validation_la_SOURCES = \
209 plugins/common/param-validation/param-validation.c \
210 plugins/common/param-validation/param-validation.h
211
212 # Set flags for the Bison based metadata parser
213 # -t : instrument the parser
214 # -d : produce a header
215 # -v : verbose
216 # -Wno-yacc : disable POSIX Yacc incompatibilities warnings
217 AM_YFLAGS = \
218 -t -d -v -Wno-yacc
219
220 plugins_ctf_common_metadata_libctf_parser_la_SOURCES = \
221 plugins/ctf/common/metadata/lexer.lpp \
222 plugins/ctf/common/metadata/parser.ypp \
223 plugins/ctf/common/metadata/objstack.cpp
224
225 # scanner-symbols.h is included to prefix generated yy_* symbols with bt_.
226 plugins_ctf_common_metadata_libctf_parser_la_CPPFLAGS = \
227 $(AM_CPPFLAGS) \
228 -include $(srcdir)/plugins/ctf/common/metadata/scanner-symbols.hpp
229
230 # This library contains (mostly) generated code, silence some warnings that it
231 # produces.
232 plugins_ctf_common_metadata_libctf_parser_la_CXXFLAGS = \
233 $(AM_CXXFLAGS) \
234 -Wno-unused-function \
235 -Wno-null-dereference \
236 -Wno-missing-field-initializers \
237 -Wno-unused-parameter
238
239 plugins_ctf_common_metadata_libctf_ast_la_SOURCES = \
240 plugins/ctf/common/metadata/visitor-generate-ir.cpp \
241 plugins/ctf/common/metadata/visitor-semantic-validator.cpp \
242 plugins/ctf/common/metadata/visitor-parent-links.cpp \
243 plugins/ctf/common/metadata/ast.hpp \
244 plugins/ctf/common/metadata/objstack.hpp \
245 plugins/ctf/common/metadata/parser.hpp \
246 plugins/ctf/common/metadata/parser-wrap.hpp \
247 plugins/ctf/common/metadata/scanner.hpp \
248 plugins/ctf/common/metadata/scanner-symbols.hpp \
249 plugins/ctf/common/metadata/decoder.cpp \
250 plugins/ctf/common/metadata/decoder.hpp \
251 plugins/ctf/common/metadata/decoder-packetized-file-stream-to-buf.cpp \
252 plugins/ctf/common/metadata/decoder-packetized-file-stream-to-buf.hpp \
253 plugins/ctf/common/metadata/logging.cpp \
254 plugins/ctf/common/metadata/logging.hpp \
255 plugins/ctf/common/metadata/ctf-meta.hpp \
256 plugins/ctf/common/metadata/ctf-meta-visitors.hpp \
257 plugins/ctf/common/metadata/ctf-meta-validate.cpp \
258 plugins/ctf/common/metadata/ctf-meta-update-meanings.cpp \
259 plugins/ctf/common/metadata/ctf-meta-update-in-ir.cpp \
260 plugins/ctf/common/metadata/ctf-meta-update-default-clock-classes.cpp \
261 plugins/ctf/common/metadata/ctf-meta-update-text-array-sequence.cpp \
262 plugins/ctf/common/metadata/ctf-meta-update-alignments.cpp \
263 plugins/ctf/common/metadata/ctf-meta-update-value-storing-indexes.cpp \
264 plugins/ctf/common/metadata/ctf-meta-update-stream-class-config.cpp \
265 plugins/ctf/common/metadata/ctf-meta-warn-meaningless-header-fields.cpp \
266 plugins/ctf/common/metadata/ctf-meta-translate.cpp \
267 plugins/ctf/common/metadata/ctf-meta-resolve.cpp \
268 plugins/ctf/common/metadata/ctf-meta-configure-ir-trace.cpp \
269 plugins/ctf/common/metadata/ctf-meta-configure-ir-trace.hpp
270
271 if BABELTRACE_BUILD_WITH_MINGW
272 plugins_ctf_common_metadata_libctf_ast_la_LIBADD = -lintl -liconv -lole32
273 endif
274
275 BUILT_SOURCES += \
276 plugins/ctf/common/metadata/parser.hpp
277
278 ALL_LOCAL =
279
280 if HAVE_BISON
281 # We have bison: we can clean the generated parser files
282 CLEANFILES += \
283 plugins/ctf/common/metadata/parser.cpp \
284 plugins/ctf/common/metadata/parser.hpp \
285 plugins/ctf/common/metadata/parser.output
286 else # HAVE_BISON
287 # Create target used to stop the build if we want to build the parser,
288 # but we don't have the necessary tool to do so
289 plugins/ctf/common/metadata/parser.cpp plugins/ctf/common/metadata/parser.hpp: plugins/ctf/common/metadata/parser.ypp
290 @echo "Error: Cannot build target because bison is missing."
291 @echo "Make sure bison is installed and run the configure script again."
292 @false
293
294 ALL_LOCAL += \
295 plugins/ctf/common/metadata/parser.cpp \
296 plugins/ctf/common/metadata/parser.hpp
297 endif # HAVE_BISON
298
299 if HAVE_FLEX
300 # We have flex: we can clean the generated lexer files
301 CLEANFILES += plugins/ctf/common/metadata/lexer.cpp
302 else # HAVE_FLEX
303 # Create target used to stop the build if we want to build the lexer,
304 # but we don't have the necessary tool to do so
305 plugins/ctf/common/metadata/lexer.cpp: plugins/ctf/common/metadata/lexer.lpp
306 @echo "Error: Cannot build target because flex is missing."
307 @echo "Make sure flex is installed and run the configure script again."
308 @false
309
310 ALL_LOCAL += plugins/ctf/common/metadata/lexer.cpp
311 endif # HAVE_FLEX
312
313 all-local: $(ALL_LOCAL)
314
315 if ENABLE_PYTHON_COMMON_DEPS
316 noinst_LTLIBRARIES += py-common/libpy-common.la
317
318 py_common_libpy_common_la_SOURCES = \
319 py-common/py-common.c \
320 py-common/py-common.h
321
322 py_common_libpy_common_la_CPPFLAGS = \
323 $(AM_CPPFLAGS) \
324 $(PYTHON_INCLUDE)
325
326 endif # ENABLE_PYTHON_COMMON_DEPS
327
328 if ENABLE_DEBUG_INFO
329 noinst_LTLIBRARIES += plugins/lttng-utils/debug-info/libdebug-info.la
330
331 plugins_lttng_utils_debug_info_libdebug_info_la_SOURCES = \
332 plugins/lttng-utils/debug-info/bin-info.c \
333 plugins/lttng-utils/debug-info/bin-info.h \
334 plugins/lttng-utils/debug-info/crc32.c \
335 plugins/lttng-utils/debug-info/crc32.h \
336 plugins/lttng-utils/debug-info/debug-info.c \
337 plugins/lttng-utils/debug-info/debug-info.h \
338 plugins/lttng-utils/debug-info/dwarf.c \
339 plugins/lttng-utils/debug-info/dwarf.h \
340 plugins/lttng-utils/debug-info/trace-ir-data-copy.c \
341 plugins/lttng-utils/debug-info/trace-ir-data-copy.h \
342 plugins/lttng-utils/debug-info/trace-ir-mapping.c \
343 plugins/lttng-utils/debug-info/trace-ir-mapping.h \
344 plugins/lttng-utils/debug-info/trace-ir-metadata-copy.c \
345 plugins/lttng-utils/debug-info/trace-ir-metadata-copy.h \
346 plugins/lttng-utils/debug-info/trace-ir-metadata-field-class-copy.c \
347 plugins/lttng-utils/debug-info/trace-ir-metadata-field-class-copy.h \
348 plugins/lttng-utils/debug-info/utils.c \
349 plugins/lttng-utils/debug-info/utils.h
350
351 plugins_lttng_utils_debug_info_libdebug_info_la_LIBADD = \
352 fd-cache/libfd-cache.la
353
354 endif # ENABLE_DEBUG_INFO
355
356
357 #
358 # Public libraries
359 #
360
361 lib_LTLIBRARIES = \
362 ctf-writer/libbabeltrace2-ctf-writer.la \
363 lib/libbabeltrace2.la
364
365 lib_libbabeltrace2_la_SOURCES = \
366 lib/graph/message/discarded-items.c \
367 lib/graph/message/discarded-items.h \
368 lib/graph/message/event.c \
369 lib/graph/message/event.h \
370 lib/graph/message-iterator-class.c \
371 lib/graph/message-iterator-class.h \
372 lib/graph/message/iterator.h \
373 lib/graph/message/message.c \
374 lib/graph/message/message.h \
375 lib/graph/message/message-iterator-inactivity.c \
376 lib/graph/message/message-iterator-inactivity.h \
377 lib/graph/message/packet.c \
378 lib/graph/message/packet.h \
379 lib/graph/message/stream.c \
380 lib/graph/message/stream.h \
381 lib/graph/component.c \
382 lib/graph/component-class.c \
383 lib/graph/component-class.h \
384 lib/graph/component-class-sink-simple.c \
385 lib/graph/component-class-sink-simple.h \
386 lib/graph/component-descriptor-set.c \
387 lib/graph/component-descriptor-set.h \
388 lib/graph/component-filter.c \
389 lib/graph/component-filter.h \
390 lib/graph/component.h \
391 lib/graph/component-sink.c \
392 lib/graph/component-sink.h \
393 lib/graph/component-source.c \
394 lib/graph/component-source.h \
395 lib/graph/connection.c \
396 lib/graph/connection.h \
397 lib/graph/graph.c \
398 lib/graph/graph.h \
399 lib/graph/interrupter.c \
400 lib/graph/interrupter.h \
401 lib/graph/iterator.c \
402 lib/graph/mip.c \
403 lib/graph/port.c \
404 lib/graph/port.h \
405 lib/graph/query-executor.c \
406 lib/graph/query-executor.h \
407 lib/plugin/plugin.c \
408 lib/plugin/plugin.h \
409 lib/plugin/plugin-so.c \
410 lib/plugin/plugin-so.h \
411 lib/prio-heap/prio-heap.c \
412 lib/prio-heap/prio-heap.h \
413 lib/trace-ir/attributes.c \
414 lib/trace-ir/attributes.h \
415 lib/trace-ir/clock-class.c \
416 lib/trace-ir/clock-class.h \
417 lib/trace-ir/clock-snapshot.c \
418 lib/trace-ir/clock-snapshot.h \
419 lib/trace-ir/event.c \
420 lib/trace-ir/event-class.c \
421 lib/trace-ir/event-class.h \
422 lib/trace-ir/event.h \
423 lib/trace-ir/field.c \
424 lib/trace-ir/field-class.c \
425 lib/trace-ir/field-class.h \
426 lib/trace-ir/field.h \
427 lib/trace-ir/field-path.c \
428 lib/trace-ir/field-path.h \
429 lib/trace-ir/field-wrapper.c \
430 lib/trace-ir/field-wrapper.h \
431 lib/trace-ir/packet.c \
432 lib/trace-ir/packet.h \
433 lib/trace-ir/resolve-field-path.c \
434 lib/trace-ir/resolve-field-path.h \
435 lib/trace-ir/stream.c \
436 lib/trace-ir/stream-class.c \
437 lib/trace-ir/stream-class.h \
438 lib/trace-ir/stream.h \
439 lib/trace-ir/trace.c \
440 lib/trace-ir/trace-class.c \
441 lib/trace-ir/trace-class.h \
442 lib/trace-ir/trace.h \
443 lib/trace-ir/utils.c \
444 lib/trace-ir/utils.h \
445 lib/assert-cond-base.h \
446 lib/assert-cond.h \
447 lib/assert-cond.c \
448 lib/babeltrace2.c \
449 lib/current-thread.c \
450 lib/error.c \
451 lib/error.h \
452 lib/func-status.h \
453 lib/integer-range-set.c \
454 lib/integer-range-set.h \
455 lib/lib-logging.c \
456 lib/logging.c \
457 lib/logging.h \
458 lib/object-pool.c \
459 lib/object-pool.h \
460 lib/object.h \
461 lib/property.h \
462 lib/util.c \
463 lib/value.c \
464 lib/value.h
465
466 lib_libbabeltrace2_la_LDFLAGS = \
467 $(AM_LDFLAGS) \
468 $(LT_NO_UNDEFINED) \
469 -version-info $(BABELTRACE_LIBRARY_VERSION)
470
471 lib_libbabeltrace2_la_CPPFLAGS = \
472 $(AM_CPPFLAGS) \
473 '-DBABELTRACE_PLUGIN_PROVIDERS_DIR="$(BABELTRACE_PLUGIN_PROVIDERS_DIR)"'
474
475 lib_libbabeltrace2_la_LIBADD = \
476 logging/liblogging.la \
477 common/libcommon.la \
478 compat/libcompat.la
479
480 ctf_writer_libbabeltrace2_ctf_writer_la_SOURCES = \
481 ctf-writer/assert-pre.h \
482 ctf-writer/attributes.c \
483 ctf-writer/attributes.h \
484 ctf-writer/clock.c \
485 ctf-writer/clock-class.c \
486 ctf-writer/clock-class.h \
487 ctf-writer/clock.h \
488 ctf-writer/event.c \
489 ctf-writer/event-class.c \
490 ctf-writer/event-class.h \
491 ctf-writer/event.h \
492 ctf-writer/field-path.c \
493 ctf-writer/field-path.h \
494 ctf-writer/fields.c \
495 ctf-writer/fields.h \
496 ctf-writer/field-types.c \
497 ctf-writer/field-types.h \
498 ctf-writer/field-wrapper.c \
499 ctf-writer/field-wrapper.h \
500 ctf-writer/functor.c \
501 ctf-writer/functor.h \
502 ctf-writer/logging.c \
503 ctf-writer/logging.h \
504 ctf-writer/object.c \
505 ctf-writer/object.h \
506 ctf-writer/object-pool.c \
507 ctf-writer/object-pool.h \
508 ctf-writer/resolve.c \
509 ctf-writer/resolve.h \
510 ctf-writer/stream.c \
511 ctf-writer/stream-class.c \
512 ctf-writer/stream-class.h \
513 ctf-writer/stream.h \
514 ctf-writer/trace.c \
515 ctf-writer/trace.h \
516 ctf-writer/utils.c \
517 ctf-writer/utils.h \
518 ctf-writer/validation.c \
519 ctf-writer/validation.h \
520 ctf-writer/values.c \
521 ctf-writer/values.h \
522 ctf-writer/visitor.c \
523 ctf-writer/visitor.h \
524 ctf-writer/writer.c \
525 ctf-writer/writer.h
526
527 ctf_writer_libbabeltrace2_ctf_writer_la_LDFLAGS = \
528 $(AM_LDFLAGS) \
529 $(LT_NO_UNDEFINED) \
530 -version-info $(BABELTRACE_LIBRARY_VERSION)
531
532 ctf_writer_libbabeltrace2_ctf_writer_la_LIBADD = \
533 logging/liblogging.la \
534 common/libcommon.la \
535 ctfser/libctfser.la \
536 compat/libcompat.la
537
538 pkgconfigdir = $(libdir)/pkgconfig
539 pkgconfig_DATA = \
540 babeltrace2-ctf-writer.pc \
541 babeltrace2.pc
542
543 #
544 # Python plugin provider
545 #
546
547 if ENABLE_PYTHON_PLUGINS
548 pluginproviderdir = "$(BABELTRACE_PLUGIN_PROVIDERS_DIR)"
549 pluginprovider_LTLIBRARIES = python-plugin-provider/babeltrace2-python-plugin-provider.la
550
551 python_plugin_provider_babeltrace2_python_plugin_provider_la_SOURCES = \
552 python-plugin-provider/python-plugin-provider.c \
553 python-plugin-provider/python-plugin-provider.h
554
555 python_plugin_provider_babeltrace2_python_plugin_provider_la_LDFLAGS = \
556 $(AM_LDFLAGS) \
557 $(LT_NO_UNDEFINED) \
558 -avoid-version -module \
559 $(PYTHON_LDFLAGS)
560
561 python_plugin_provider_babeltrace2_python_plugin_provider_la_CPPFLAGS = \
562 $(AM_CPPFLAGS) \
563 $(PYTHON_INCLUDE)
564
565 python_plugin_provider_babeltrace2_python_plugin_provider_la_LIBADD =
566
567 # Link the Python plugin provider library with libbabeltrace2
568 # when it's not built-in the babeltrace2 executable.
569 if !ENABLE_BUILT_IN_PLUGINS
570 python_plugin_provider_babeltrace2_python_plugin_provider_la_LIBADD += \
571 logging/liblogging.la \
572 common/libcommon.la \
573 py-common/libpy-common.la \
574 lib/libbabeltrace2.la
575 endif
576 endif # ENABLE_PYTHON_PLUGINS
577
578 #
579 # Plugins
580 #
581
582 plugindir = "$(BABELTRACE_PLUGINS_DIR)"
583 plugin_LTLIBRARIES = \
584 plugins/ctf/babeltrace-plugin-ctf.la \
585 plugins/text/babeltrace-plugin-text.la \
586 plugins/utils/babeltrace-plugin-utils.la
587
588
589 # utils plugin
590 plugins_utils_babeltrace_plugin_utils_la_SOURCES = \
591 plugins/utils/counter/counter.c \
592 plugins/utils/counter/counter.h \
593 plugins/utils/dummy/dummy.c \
594 plugins/utils/dummy/dummy.h \
595 plugins/utils/muxer/muxer.c \
596 plugins/utils/muxer/muxer.h \
597 plugins/utils/trimmer/trimmer.c \
598 plugins/utils/trimmer/trimmer.h \
599 plugins/utils/plugin.c
600
601 plugins_utils_babeltrace_plugin_utils_la_LDFLAGS = \
602 $(AM_LDFLAGS) \
603 $(LT_NO_UNDEFINED) \
604 -avoid-version -module $(LD_NOTEXT)
605
606 plugins_utils_babeltrace_plugin_utils_la_LIBADD = \
607 plugins/common/muxing/libmuxing.la
608
609 if !ENABLE_BUILT_IN_PLUGINS
610 plugins_utils_babeltrace_plugin_utils_la_LIBADD += \
611 lib/libbabeltrace2.la \
612 common/libcommon.la \
613 logging/liblogging.la \
614 plugins/common/param-validation/libparam-validation.la
615 endif
616
617 # ctf plugin
618 plugins_ctf_babeltrace_plugin_ctf_la_SOURCES = \
619 plugins/ctf/common/bfcr/bfcr.cpp \
620 plugins/ctf/common/bfcr/bfcr.hpp \
621 plugins/ctf/common/msg-iter/msg-iter.cpp \
622 plugins/ctf/common/msg-iter/msg-iter.hpp \
623 plugins/ctf/common/print.hpp \
624 plugins/ctf/fs-sink/fs-sink.cpp \
625 plugins/ctf/fs-sink/fs-sink-ctf-meta.hpp \
626 plugins/ctf/fs-sink/fs-sink.hpp \
627 plugins/ctf/fs-sink/fs-sink-stream.cpp \
628 plugins/ctf/fs-sink/fs-sink-stream.hpp \
629 plugins/ctf/fs-sink/fs-sink-trace.cpp \
630 plugins/ctf/fs-sink/fs-sink-trace.hpp \
631 plugins/ctf/fs-sink/translate-ctf-ir-to-tsdl.cpp \
632 plugins/ctf/fs-sink/translate-ctf-ir-to-tsdl.hpp \
633 plugins/ctf/fs-sink/translate-trace-ir-to-ctf-ir.cpp \
634 plugins/ctf/fs-sink/translate-trace-ir-to-ctf-ir.hpp \
635 plugins/ctf/fs-src/data-stream-file.cpp \
636 plugins/ctf/fs-src/data-stream-file.hpp \
637 plugins/ctf/fs-src/file.cpp \
638 plugins/ctf/fs-src/file.hpp \
639 plugins/ctf/fs-src/fs.cpp \
640 plugins/ctf/fs-src/fs.hpp \
641 plugins/ctf/fs-src/lttng-index.hpp \
642 plugins/ctf/fs-src/metadata.cpp \
643 plugins/ctf/fs-src/metadata.hpp \
644 plugins/ctf/fs-src/query.cpp \
645 plugins/ctf/fs-src/query.hpp \
646 plugins/ctf/lttng-live/data-stream.cpp \
647 plugins/ctf/lttng-live/data-stream.hpp \
648 plugins/ctf/lttng-live/lttng-live.cpp \
649 plugins/ctf/lttng-live/lttng-live.hpp \
650 plugins/ctf/lttng-live/lttng-viewer-abi.hpp \
651 plugins/ctf/lttng-live/metadata.cpp \
652 plugins/ctf/lttng-live/metadata.hpp \
653 plugins/ctf/lttng-live/viewer-connection.cpp \
654 plugins/ctf/lttng-live/viewer-connection.hpp \
655 plugins/ctf/plugin.cpp
656
657 plugins_ctf_babeltrace_plugin_ctf_la_LDFLAGS = \
658 $(AM_LDFLAGS) \
659 $(LT_NO_UNDEFINED) \
660 -avoid-version -module $(LD_NOTEXT)
661
662 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD = \
663 plugins/ctf/common/metadata/libctf-parser.la \
664 plugins/ctf/common/metadata/libctf-ast.la \
665 plugins/common/param-validation/libparam-validation.la
666
667 if BABELTRACE_BUILD_WITH_MINGW
668 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD += -lws2_32
669 endif
670
671 if !ENABLE_BUILT_IN_PLUGINS
672 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD += \
673 lib/libbabeltrace2.la \
674 logging/liblogging.la \
675 plugins/common/muxing/libmuxing.la \
676 common/libcommon.la \
677 ctfser/libctfser.la
678 endif
679
680 # text plugin
681 plugins_text_babeltrace_plugin_text_la_SOURCES = \
682 plugins/text/details/colors.h \
683 plugins/text/details/details.c \
684 plugins/text/details/details.h \
685 plugins/text/details/obj-lifetime-mgmt.c \
686 plugins/text/details/obj-lifetime-mgmt.h \
687 plugins/text/details/write.c \
688 plugins/text/details/write.h \
689 plugins/text/dmesg/dmesg.c \
690 plugins/text/dmesg/dmesg.h \
691 plugins/text/pretty/pretty.c \
692 plugins/text/pretty/pretty.h \
693 plugins/text/pretty/print.c \
694 plugins/text/plugin.c
695
696 plugins_text_babeltrace_plugin_text_la_LDFLAGS = \
697 $(AM_LDFLAGS) \
698 $(LT_NO_UNDEFINED) \
699 -avoid-version -module $(LD_NOTEXT)
700
701 plugins_text_babeltrace_plugin_text_la_LIBADD =
702
703 if !ENABLE_BUILT_IN_PLUGINS
704 plugins_text_babeltrace_plugin_text_la_LIBADD += \
705 lib/libbabeltrace2.la \
706 common/libcommon.la \
707 logging/liblogging.la \
708 compat/libcompat.la \
709 plugins/common/param-validation/libparam-validation.la
710 endif
711
712 # lttng-utils plugin
713 if ENABLE_DEBUG_INFO
714 plugin_LTLIBRARIES += \
715 plugins/lttng-utils/babeltrace-plugin-lttng-utils.la
716
717 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_SOURCES = \
718 plugins/lttng-utils/plugin.c
719
720 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LDFLAGS = \
721 $(AM_LDFLAGS) \
722 $(LT_NO_UNDEFINED) \
723 -avoid-version -module $(LD_NOTEXT) \
724 $(ELFUTILS_LIBS)
725
726 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LIBADD = \
727 plugins/lttng-utils/debug-info/libdebug-info.la
728
729 if !ENABLE_BUILT_IN_PLUGINS
730 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LIBADD += \
731 lib/libbabeltrace2.la \
732 common/libcommon.la \
733 logging/liblogging.la \
734 plugins/common/param-validation/libparam-validation.la
735 endif # !ENABLE_BUILT_IN_PLUGINS
736 endif # ENABLE_DEBUG_INFO
737
738 EXTRA_DIST = cpp-common/optional.hpp.license
This page took 0.047109 seconds and 5 git commands to generate.