1 # SPDX-FileCopyrightText: 2019-2023 EfficiOS, Inc.
2 # SPDX-License-Identifier: MIT
4 # Build the current dir containing the library and plugins before the cli and
10 if ENABLE_PYTHON_BINDINGS
11 SUBDIRS += bindings/python/bt2
14 ## This target generates an include file that contains the git version
15 ## string of the current branch, it must be continuously updated when
16 ## we build in the git repo and shipped in dist tarballs to reflect the
17 ## status of the tree when it was generated. If the tree is clean and
18 ## the current commit is a tag starting with "v", consider this a
19 ## release version and set an empty git version.
21 version_verbose = $(version_verbose_@AM_V@)
22 version_verbose_ = $(version_verbose_@AM_DEFAULT_V@)
23 version_verbose_0 = @echo " GEN " $@;
26 $(version_verbose)GREP=$(GREP) SED=$(SED) TOP_SRCDIR="$(top_srcdir)" $(SHELL) $(srcdir)/gen-version-i.sh
28 dist_noinst_SCRIPTS = gen-version-i.sh
30 # Ensure version.i is generated before any code is built.
31 BUILT_SOURCES = common/version.i
34 ## version.i is defined as a .PHONY target even if it's a real file,
35 ## we want the target to be re-run on every make.
37 .PHONY: common/version.i
39 CLEANFILES = common/version.i.tmp
42 ## Only clean "version.i" on dist-clean, we need to keep it on regular
43 ## clean when it's part of a dist tarball.
45 DISTCLEANFILES = common/version.i
48 # Convenience libraries
51 noinst_LTLIBRARIES = \
53 autodisc/libautodisc.la \
54 clock-correlation-validator/libclock-correlation-validator.la \
57 cpp-common/libcpp-common.la \
58 cpp-common/vendor/fmt/libfmt.la \
60 fd-cache/libfd-cache.la \
61 logging/liblogging.la \
62 param-parse/libparam-parse.la \
63 plugins/common/muxing/libmuxing.la \
64 plugins/common/param-validation/libparam-validation.la \
65 plugins/ctf/common/metadata/libctf-ast.la \
66 plugins/ctf/common/metadata/libctf-parser.la \
67 string-format/libstring-format.la
70 argpar_libargpar_la_SOURCES = \
74 autodisc_libautodisc_la_SOURCES = \
78 clock_correlation_validator_libclock_correlation_validator_la_SOURCES = \
79 clock-correlation-validator/clock-correlation-validator.cpp \
80 clock-correlation-validator/clock-correlation-validator.h \
81 clock-correlation-validator/clock-correlation-validator.hpp
83 common_libcommon_la_SOURCES = \
98 common_libcommon_la_CPPFLAGS = \
100 -DBABELTRACE_PLUGINS_DIR=\"$(BABELTRACE_PLUGINS_DIR)\"
102 compat_libcompat_la_SOURCES = \
120 cpp_common_libcpp_common_la_SOURCES = \
121 cpp-common/bt2/borrowed-object-iterator.hpp \
122 cpp-common/bt2/borrowed-object-proxy.hpp \
123 cpp-common/bt2/borrowed-object.hpp \
124 cpp-common/bt2/clock-class.hpp \
125 cpp-common/bt2/clock-snapshot.hpp \
126 cpp-common/bt2/component-class-dev.hpp \
127 cpp-common/bt2/component-class.hpp \
128 cpp-common/bt2/component-port.hpp \
129 cpp-common/bt2/graph.hpp \
130 cpp-common/bt2/error.hpp \
131 cpp-common/bt2/exc.hpp \
132 cpp-common/bt2/field-class.hpp \
133 cpp-common/bt2/field-path.hpp \
134 cpp-common/bt2/field.hpp \
135 cpp-common/bt2/integer-range-set.hpp \
136 cpp-common/bt2/integer-range.hpp \
137 cpp-common/bt2/internal/comp-cls-bridge.hpp \
138 cpp-common/bt2/internal/utils.hpp \
139 cpp-common/bt2/logging.hpp \
140 cpp-common/bt2/message-array.hpp \
141 cpp-common/bt2/message-iterator.hpp \
142 cpp-common/bt2/message.hpp \
143 cpp-common/bt2/optional-borrowed-object.hpp \
144 cpp-common/bt2/plugin-dev.hpp \
145 cpp-common/bt2/plugin-load.hpp \
146 cpp-common/bt2/plugin-set.hpp \
147 cpp-common/bt2/plugin.hpp \
148 cpp-common/bt2/private-query-executor.hpp \
149 cpp-common/bt2/query-executor.hpp \
150 cpp-common/bt2/raw-value-proxy.hpp \
151 cpp-common/bt2/self-component-class.hpp \
152 cpp-common/bt2/self-component-port.hpp \
153 cpp-common/bt2/self-message-iterator-configuration.hpp \
154 cpp-common/bt2/self-message-iterator.hpp \
155 cpp-common/bt2/shared-object.hpp \
156 cpp-common/bt2/trace-ir.hpp \
157 cpp-common/bt2/type-traits.hpp \
158 cpp-common/bt2/value.hpp \
159 cpp-common/bt2/wrap.hpp \
160 cpp-common/bt2c/align.hpp \
161 cpp-common/bt2c/c-string-view.hpp \
162 cpp-common/bt2c/call.hpp \
163 cpp-common/bt2c/contains.hpp \
164 cpp-common/bt2c/dummy.cpp \
165 cpp-common/bt2c/endian.hpp \
166 cpp-common/bt2c/exc.hpp \
167 cpp-common/bt2c/fmt.hpp \
168 cpp-common/bt2c/glib-up.hpp \
169 cpp-common/bt2c/libc-up.hpp \
170 cpp-common/bt2c/logging.hpp \
171 cpp-common/bt2c/prio-heap.hpp \
172 cpp-common/bt2c/read-fixed-len-int.hpp \
173 cpp-common/bt2c/safe-ops.hpp \
174 cpp-common/bt2c/span.hpp \
175 cpp-common/bt2c/std-int.hpp \
176 cpp-common/bt2c/type-traits.hpp \
177 cpp-common/bt2c/uuid.hpp \
178 cpp-common/bt2c/vector.hpp \
179 cpp-common/bt2s/make-unique.hpp \
180 cpp-common/bt2s/optional.hpp \
181 cpp-common/bt2s/span.hpp \
182 cpp-common/bt2s/string-view.hpp \
183 cpp-common/vendor/nlohmann/json.hpp \
184 cpp-common/vendor/optional-lite/optional.hpp \
185 cpp-common/vendor/span-lite/span.hpp \
186 cpp-common/vendor/string-view-lite/string_view.hpp \
187 cpp-common/vendor/wise-enum/optional.h \
188 cpp-common/vendor/wise-enum/optional_common.h \
189 cpp-common/vendor/wise-enum/wise_enum.h \
190 cpp-common/vendor/wise-enum/wise_enum_detail.h \
191 cpp-common/vendor/wise-enum/wise_enum_generated.h
193 cpp_common_vendor_fmt_libfmt_la_SOURCES = \
194 cpp-common/vendor/fmt/args.h \
195 cpp-common/vendor/fmt/chrono.h \
196 cpp-common/vendor/fmt/color.h \
197 cpp-common/vendor/fmt/compile.h \
198 cpp-common/vendor/fmt/core.h \
199 cpp-common/vendor/fmt/format-inl.h \
200 cpp-common/vendor/fmt/format.cc \
201 cpp-common/vendor/fmt/format.h \
202 cpp-common/vendor/fmt/os.cc \
203 cpp-common/vendor/fmt/os.h \
204 cpp-common/vendor/fmt/ostream.h \
205 cpp-common/vendor/fmt/printf.h \
206 cpp-common/vendor/fmt/ranges.h \
207 cpp-common/vendor/fmt/std.h \
208 cpp-common/vendor/fmt/xchar.h
210 cpp_common_vendor_fmt_libfmt_la_CXXFLAGS = \
211 $(AM_CXXFLAGS) -Wno-missing-noreturn
213 ctfser_libctfser_la_SOURCES = \
217 fd_cache_libfd_cache_la_SOURCES = \
218 fd-cache/fd-cache.c \
221 logging_liblogging_la_SOURCES = \
222 logging/comp-logging.h \
227 param_parse_libparam_parse_la_SOURCES = \
228 param-parse/param-parse.c \
229 param-parse/param-parse.h
231 string_format_libstring_format_la_SOURCES = \
232 string-format/format-plugin-comp-cls-name.c \
233 string-format/format-plugin-comp-cls-name.h \
234 string-format/format-error.c \
235 string-format/format-error.h
237 plugins_common_muxing_libmuxing_la_SOURCES = \
238 plugins/common/muxing/muxing.c \
239 plugins/common/muxing/muxing.h
241 plugins_common_param_validation_libparam_validation_la_SOURCES = \
242 plugins/common/param-validation/param-validation.c \
243 plugins/common/param-validation/param-validation.h
245 # Set flags for the Bison based metadata parser
246 # -t : instrument the parser
247 # -d : produce a header
249 # -Wno-yacc : disable POSIX Yacc incompatibilities warnings
253 plugins_ctf_common_metadata_libctf_parser_la_SOURCES = \
254 plugins/ctf/common/src/metadata/tsdl/lexer.lpp \
255 plugins/ctf/common/src/metadata/tsdl/parser.ypp \
256 plugins/ctf/common/src/metadata/tsdl/objstack.cpp
258 # scanner-symbols.h is included to prefix generated yy_* symbols with bt_.
259 plugins_ctf_common_metadata_libctf_parser_la_CPPFLAGS = \
261 -include $(srcdir)/plugins/ctf/common/src/metadata/tsdl/scanner-symbols.hpp
263 # This library contains (mostly) generated code, silence some warnings that it
265 plugins_ctf_common_metadata_libctf_parser_la_CXXFLAGS = \
267 -Wno-unused-function \
268 -Wno-null-dereference \
269 -Wno-missing-field-initializers \
270 -Wno-unused-parameter
272 plugins_ctf_common_metadata_libctf_ast_la_SOURCES = \
273 plugins/ctf/common/src/metadata/tsdl/visitor-generate-ir.cpp \
274 plugins/ctf/common/src/metadata/tsdl/visitor-semantic-validator.cpp \
275 plugins/ctf/common/src/metadata/tsdl/visitor-parent-links.cpp \
276 plugins/ctf/common/src/metadata/tsdl/ast.hpp \
277 plugins/ctf/common/src/metadata/tsdl/objstack.hpp \
278 plugins/ctf/common/src/metadata/tsdl/parser.hpp \
279 plugins/ctf/common/src/metadata/tsdl/parser-wrap.hpp \
280 plugins/ctf/common/src/metadata/tsdl/scanner.hpp \
281 plugins/ctf/common/src/metadata/tsdl/scanner-symbols.hpp \
282 plugins/ctf/common/src/metadata/tsdl/decoder.cpp \
283 plugins/ctf/common/src/metadata/tsdl/decoder.hpp \
284 plugins/ctf/common/src/metadata/tsdl/decoder-packetized-file-stream-to-buf.cpp \
285 plugins/ctf/common/src/metadata/tsdl/decoder-packetized-file-stream-to-buf.hpp \
286 plugins/ctf/common/src/metadata/tsdl/logging.cpp \
287 plugins/ctf/common/src/metadata/tsdl/logging.hpp \
288 plugins/ctf/common/src/metadata/tsdl/ctf-meta.hpp \
289 plugins/ctf/common/src/metadata/tsdl/ctf-meta-visitors.hpp \
290 plugins/ctf/common/src/metadata/tsdl/ctf-meta-validate.cpp \
291 plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-meanings.cpp \
292 plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-in-ir.cpp \
293 plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-default-clock-classes.cpp \
294 plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-text-array-sequence.cpp \
295 plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-alignments.cpp \
296 plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-value-storing-indexes.cpp \
297 plugins/ctf/common/src/metadata/tsdl/ctf-meta-update-stream-class-config.cpp \
298 plugins/ctf/common/src/metadata/tsdl/ctf-meta-warn-meaningless-header-fields.cpp \
299 plugins/ctf/common/src/metadata/tsdl/ctf-meta-translate.cpp \
300 plugins/ctf/common/src/metadata/tsdl/ctf-meta-resolve.cpp \
301 plugins/ctf/common/src/metadata/tsdl/ctf-meta-configure-ir-trace.cpp \
302 plugins/ctf/common/src/metadata/tsdl/ctf-meta-configure-ir-trace.hpp
304 if BABELTRACE_BUILD_WITH_MINGW
305 plugins_ctf_common_metadata_libctf_ast_la_LIBADD = -lintl -liconv -lole32
309 plugins/ctf/common/src/metadata/tsdl/parser.hpp
314 # We have bison: we can clean the generated parser files
316 plugins/ctf/common/src/metadata/tsdl/parser.cpp \
317 plugins/ctf/common/src/metadata/tsdl/parser.hpp \
318 plugins/ctf/common/src/metadata/tsdl/parser.output
320 # Create target used to stop the build if we want to build the parser,
321 # but we don't have the necessary tool to do so
322 plugins/ctf/common/metadata/parser.cpp plugins/ctf/common/metadata/parser.hpp: plugins/ctf/common/metadata/parser.ypp
323 @echo "Error: Cannot build target because bison is missing."
324 @echo "Make sure bison is installed and run the configure script again."
328 plugins/ctf/common/metadata/parser.cpp \
329 plugins/ctf/common/metadata/parser.hpp
333 # We have flex: we can clean the generated lexer files
334 CLEANFILES += plugins/ctf/common/metadata/lexer.cpp
336 # Create target used to stop the build if we want to build the lexer,
337 # but we don't have the necessary tool to do so
338 plugins/ctf/common/metadata/lexer.cpp: plugins/ctf/common/metadata/lexer.lpp
339 @echo "Error: Cannot build target because flex is missing."
340 @echo "Make sure flex is installed and run the configure script again."
343 ALL_LOCAL += plugins/ctf/common/metadata/lexer.cpp
346 all-local: $(ALL_LOCAL)
348 if ENABLE_PYTHON_COMMON_DEPS
349 noinst_LTLIBRARIES += py-common/libpy-common.la
351 py_common_libpy_common_la_SOURCES = \
352 py-common/py-common.c \
353 py-common/py-common.h
355 py_common_libpy_common_la_CPPFLAGS = \
359 endif # ENABLE_PYTHON_COMMON_DEPS
362 noinst_LTLIBRARIES += plugins/lttng-utils/debug-info/libdebug-info.la
364 plugins_lttng_utils_debug_info_libdebug_info_la_SOURCES = \
365 plugins/lttng-utils/debug-info/bin-info.c \
366 plugins/lttng-utils/debug-info/bin-info.h \
367 plugins/lttng-utils/debug-info/crc32.c \
368 plugins/lttng-utils/debug-info/crc32.h \
369 plugins/lttng-utils/debug-info/debug-info.c \
370 plugins/lttng-utils/debug-info/debug-info.h \
371 plugins/lttng-utils/debug-info/dwarf.c \
372 plugins/lttng-utils/debug-info/dwarf.h \
373 plugins/lttng-utils/debug-info/trace-ir-data-copy.c \
374 plugins/lttng-utils/debug-info/trace-ir-data-copy.h \
375 plugins/lttng-utils/debug-info/trace-ir-mapping.c \
376 plugins/lttng-utils/debug-info/trace-ir-mapping.h \
377 plugins/lttng-utils/debug-info/trace-ir-metadata-copy.c \
378 plugins/lttng-utils/debug-info/trace-ir-metadata-copy.h \
379 plugins/lttng-utils/debug-info/trace-ir-metadata-field-class-copy.c \
380 plugins/lttng-utils/debug-info/trace-ir-metadata-field-class-copy.h \
381 plugins/lttng-utils/debug-info/utils.c \
382 plugins/lttng-utils/debug-info/utils.h
384 plugins_lttng_utils_debug_info_libdebug_info_la_LIBADD = \
385 fd-cache/libfd-cache.la
387 endif # ENABLE_DEBUG_INFO
395 ctf-writer/libbabeltrace2-ctf-writer.la \
396 lib/libbabeltrace2.la
398 lib_libbabeltrace2_la_SOURCES = \
399 lib/graph/message/discarded-items.c \
400 lib/graph/message/discarded-items.h \
401 lib/graph/message/event.c \
402 lib/graph/message/event.h \
403 lib/graph/message-iterator-class.c \
404 lib/graph/message-iterator-class.h \
405 lib/graph/message/message.c \
406 lib/graph/message/message.h \
407 lib/graph/message/message-iterator-inactivity.c \
408 lib/graph/message/message-iterator-inactivity.h \
409 lib/graph/message/packet.c \
410 lib/graph/message/packet.h \
411 lib/graph/message/stream.c \
412 lib/graph/message/stream.h \
413 lib/graph/component.c \
414 lib/graph/component-class.c \
415 lib/graph/component-class.h \
416 lib/graph/component-class-sink-simple.c \
417 lib/graph/component-class-sink-simple.h \
418 lib/graph/component-descriptor-set.c \
419 lib/graph/component-descriptor-set.h \
420 lib/graph/component-filter.c \
421 lib/graph/component-filter.h \
422 lib/graph/component.h \
423 lib/graph/component-sink.c \
424 lib/graph/component-sink.h \
425 lib/graph/component-source.c \
426 lib/graph/component-source.h \
427 lib/graph/connection.c \
428 lib/graph/connection.h \
431 lib/graph/interrupter.c \
432 lib/graph/interrupter.h \
433 lib/graph/iterator.c \
434 lib/graph/iterator.h \
438 lib/graph/query-executor.c \
439 lib/graph/query-executor.h \
440 lib/plugin/plugin.c \
441 lib/plugin/plugin.h \
442 lib/plugin/plugin-so.c \
443 lib/plugin/plugin-so.h \
444 lib/trace-ir/attributes.c \
445 lib/trace-ir/attributes.h \
446 lib/trace-ir/clock-class.c \
447 lib/trace-ir/clock-class.h \
448 lib/trace-ir/clock-snapshot.c \
449 lib/trace-ir/clock-snapshot.h \
450 lib/trace-ir/event.c \
451 lib/trace-ir/event-class.c \
452 lib/trace-ir/event-class.h \
453 lib/trace-ir/event.h \
454 lib/trace-ir/field.c \
455 lib/trace-ir/field-class.c \
456 lib/trace-ir/field-class.h \
457 lib/trace-ir/field.h \
458 lib/trace-ir/field-path.c \
459 lib/trace-ir/field-path.h \
460 lib/trace-ir/field-wrapper.c \
461 lib/trace-ir/field-wrapper.h \
462 lib/trace-ir/packet.c \
463 lib/trace-ir/packet.h \
464 lib/trace-ir/resolve-field-path.c \
465 lib/trace-ir/resolve-field-path.h \
466 lib/trace-ir/stream.c \
467 lib/trace-ir/stream-class.c \
468 lib/trace-ir/stream-class.h \
469 lib/trace-ir/stream.h \
470 lib/trace-ir/trace.c \
471 lib/trace-ir/trace-class.c \
472 lib/trace-ir/trace-class.h \
473 lib/trace-ir/trace.h \
474 lib/trace-ir/utils.c \
475 lib/trace-ir/utils.h \
476 lib/assert-cond-base.h \
480 lib/current-thread.c \
484 lib/integer-range-set.c \
485 lib/integer-range-set.h \
497 lib_libbabeltrace2_la_LDFLAGS = \
500 -version-info $(BABELTRACE_LIBRARY_VERSION)
502 lib_libbabeltrace2_la_CPPFLAGS = \
504 '-DBABELTRACE_PLUGIN_PROVIDERS_DIR="$(BABELTRACE_PLUGIN_PROVIDERS_DIR)"'
506 lib_libbabeltrace2_la_LIBADD = \
507 logging/liblogging.la \
508 common/libcommon.la \
509 compat/libcompat.la \
510 clock-correlation-validator/libclock-correlation-validator.la
512 nodist_EXTRA_lib_libbabeltrace2_la_SOURCES = dummy.cpp
514 ctf_writer_libbabeltrace2_ctf_writer_la_SOURCES = \
515 ctf-writer/assert-pre.h \
516 ctf-writer/attributes.c \
517 ctf-writer/attributes.h \
519 ctf-writer/clock-class.c \
520 ctf-writer/clock-class.h \
523 ctf-writer/event-class.c \
524 ctf-writer/event-class.h \
526 ctf-writer/field-path.c \
527 ctf-writer/field-path.h \
528 ctf-writer/fields.c \
529 ctf-writer/fields.h \
530 ctf-writer/field-types.c \
531 ctf-writer/field-types.h \
532 ctf-writer/field-wrapper.c \
533 ctf-writer/field-wrapper.h \
534 ctf-writer/functor.c \
535 ctf-writer/functor.h \
536 ctf-writer/logging.c \
537 ctf-writer/logging.h \
538 ctf-writer/object.c \
539 ctf-writer/object.h \
540 ctf-writer/object-pool.c \
541 ctf-writer/object-pool.h \
542 ctf-writer/resolve.c \
543 ctf-writer/resolve.h \
544 ctf-writer/stream.c \
545 ctf-writer/stream-class.c \
546 ctf-writer/stream-class.h \
547 ctf-writer/stream.h \
552 ctf-writer/validation.c \
553 ctf-writer/validation.h \
554 ctf-writer/values.c \
555 ctf-writer/values.h \
556 ctf-writer/visitor.c \
557 ctf-writer/visitor.h \
558 ctf-writer/writer.c \
561 ctf_writer_libbabeltrace2_ctf_writer_la_LDFLAGS = \
564 -version-info $(BABELTRACE_LIBRARY_VERSION)
566 ctf_writer_libbabeltrace2_ctf_writer_la_LIBADD = \
567 logging/liblogging.la \
568 common/libcommon.la \
569 ctfser/libctfser.la \
572 pkgconfigdir = $(libdir)/pkgconfig
574 babeltrace2-ctf-writer.pc \
578 # Python plugin provider
581 if ENABLE_PYTHON_PLUGINS
582 pluginproviderdir = "$(BABELTRACE_PLUGIN_PROVIDERS_DIR)"
583 pluginprovider_LTLIBRARIES = python-plugin-provider/babeltrace2-python-plugin-provider.la
585 python_plugin_provider_babeltrace2_python_plugin_provider_la_SOURCES = \
586 python-plugin-provider/python-plugin-provider.c \
587 python-plugin-provider/python-plugin-provider.h
589 python_plugin_provider_babeltrace2_python_plugin_provider_la_LDFLAGS = \
592 -avoid-version -module \
595 python_plugin_provider_babeltrace2_python_plugin_provider_la_CPPFLAGS = \
599 python_plugin_provider_babeltrace2_python_plugin_provider_la_LIBADD =
601 # Link the Python plugin provider library with libbabeltrace2
602 # when it's not built-in the babeltrace2 executable.
603 if !ENABLE_BUILT_IN_PLUGINS
604 python_plugin_provider_babeltrace2_python_plugin_provider_la_LIBADD += \
605 logging/liblogging.la \
606 common/libcommon.la \
607 py-common/libpy-common.la \
608 lib/libbabeltrace2.la
610 endif # ENABLE_PYTHON_PLUGINS
616 plugindir = "$(BABELTRACE_PLUGINS_DIR)"
617 plugin_LTLIBRARIES = \
618 plugins/ctf/babeltrace-plugin-ctf.la \
619 plugins/text/babeltrace-plugin-text.la \
620 plugins/utils/babeltrace-plugin-utils.la
624 plugins_utils_babeltrace_plugin_utils_la_SOURCES = \
625 plugins/utils/counter/counter.c \
626 plugins/utils/counter/counter.h \
627 plugins/utils/dummy/dummy.c \
628 plugins/utils/dummy/dummy.h \
629 plugins/utils/muxer/comp.cpp \
630 plugins/utils/muxer/comp.hpp \
631 plugins/utils/muxer/msg-iter.cpp \
632 plugins/utils/muxer/msg-iter.hpp \
633 plugins/utils/muxer/upstream-msg-iter.cpp \
634 plugins/utils/muxer/upstream-msg-iter.hpp \
635 plugins/utils/trimmer/trimmer.c \
636 plugins/utils/trimmer/trimmer.h \
637 plugins/utils/plugin.cpp
639 plugins_utils_babeltrace_plugin_utils_la_LDFLAGS = \
642 -avoid-version -module $(LD_NOTEXT)
644 plugins_utils_babeltrace_plugin_utils_la_LIBADD = \
645 plugins/common/muxing/libmuxing.la
647 if !ENABLE_BUILT_IN_PLUGINS
648 plugins_utils_babeltrace_plugin_utils_la_LIBADD += \
649 lib/libbabeltrace2.la \
650 common/libcommon.la \
651 cpp-common/vendor/fmt/libfmt.la \
652 logging/liblogging.la \
653 plugins/common/param-validation/libparam-validation.la \
654 clock-correlation-validator/libclock-correlation-validator.la
658 plugins_ctf_babeltrace_plugin_ctf_la_SOURCES = \
659 plugins/ctf/common/src/bfcr/bfcr.cpp \
660 plugins/ctf/common/src/bfcr/bfcr.hpp \
661 plugins/ctf/common/src/msg-iter/msg-iter.cpp \
662 plugins/ctf/common/src/msg-iter/msg-iter.hpp \
663 plugins/ctf/fs-sink/fs-sink.cpp \
664 plugins/ctf/fs-sink/fs-sink-ctf-meta.hpp \
665 plugins/ctf/fs-sink/fs-sink.hpp \
666 plugins/ctf/fs-sink/fs-sink-stream.cpp \
667 plugins/ctf/fs-sink/fs-sink-stream.hpp \
668 plugins/ctf/fs-sink/fs-sink-trace.cpp \
669 plugins/ctf/fs-sink/fs-sink-trace.hpp \
670 plugins/ctf/fs-sink/translate-ctf-ir-to-tsdl.cpp \
671 plugins/ctf/fs-sink/translate-ctf-ir-to-tsdl.hpp \
672 plugins/ctf/fs-sink/translate-trace-ir-to-ctf-ir.cpp \
673 plugins/ctf/fs-sink/translate-trace-ir-to-ctf-ir.hpp \
674 plugins/ctf/fs-src/data-stream-file.cpp \
675 plugins/ctf/fs-src/data-stream-file.hpp \
676 plugins/ctf/fs-src/file.cpp \
677 plugins/ctf/fs-src/file.hpp \
678 plugins/ctf/fs-src/fs.cpp \
679 plugins/ctf/fs-src/fs.hpp \
680 plugins/ctf/fs-src/lttng-index.hpp \
681 plugins/ctf/fs-src/metadata.cpp \
682 plugins/ctf/fs-src/metadata.hpp \
683 plugins/ctf/fs-src/query.cpp \
684 plugins/ctf/fs-src/query.hpp \
685 plugins/ctf/lttng-live/data-stream.cpp \
686 plugins/ctf/lttng-live/data-stream.hpp \
687 plugins/ctf/lttng-live/lttng-live.cpp \
688 plugins/ctf/lttng-live/lttng-live.hpp \
689 plugins/ctf/lttng-live/lttng-viewer-abi.hpp \
690 plugins/ctf/lttng-live/metadata.cpp \
691 plugins/ctf/lttng-live/metadata.hpp \
692 plugins/ctf/lttng-live/viewer-connection.cpp \
693 plugins/ctf/lttng-live/viewer-connection.hpp \
694 plugins/ctf/plugin.cpp
696 plugins_ctf_babeltrace_plugin_ctf_la_LDFLAGS = \
699 -avoid-version -module $(LD_NOTEXT)
701 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD = \
702 plugins/ctf/common/metadata/libctf-parser.la \
703 plugins/ctf/common/metadata/libctf-ast.la \
704 plugins/common/param-validation/libparam-validation.la
706 if BABELTRACE_BUILD_WITH_MINGW
707 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD += -lws2_32
710 if !ENABLE_BUILT_IN_PLUGINS
711 plugins_ctf_babeltrace_plugin_ctf_la_LIBADD += \
712 lib/libbabeltrace2.la \
713 logging/liblogging.la \
714 plugins/common/muxing/libmuxing.la \
715 common/libcommon.la \
720 plugins_text_babeltrace_plugin_text_la_SOURCES = \
721 plugins/text/details/colors.h \
722 plugins/text/details/details.c \
723 plugins/text/details/details.h \
724 plugins/text/details/obj-lifetime-mgmt.c \
725 plugins/text/details/obj-lifetime-mgmt.h \
726 plugins/text/details/write.c \
727 plugins/text/details/write.h \
728 plugins/text/dmesg/dmesg.c \
729 plugins/text/dmesg/dmesg.h \
730 plugins/text/pretty/pretty.c \
731 plugins/text/pretty/pretty.h \
732 plugins/text/pretty/print.c \
733 plugins/text/plugin.c
735 plugins_text_babeltrace_plugin_text_la_LDFLAGS = \
738 -avoid-version -module $(LD_NOTEXT)
740 plugins_text_babeltrace_plugin_text_la_LIBADD =
742 if !ENABLE_BUILT_IN_PLUGINS
743 plugins_text_babeltrace_plugin_text_la_LIBADD += \
744 lib/libbabeltrace2.la \
745 common/libcommon.la \
746 logging/liblogging.la \
747 compat/libcompat.la \
748 plugins/common/param-validation/libparam-validation.la
753 plugin_LTLIBRARIES += \
754 plugins/lttng-utils/babeltrace-plugin-lttng-utils.la
756 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_SOURCES = \
757 plugins/lttng-utils/plugin.c
759 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LDFLAGS = \
762 -avoid-version -module $(LD_NOTEXT) \
765 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LIBADD = \
766 plugins/lttng-utils/debug-info/libdebug-info.la
768 if !ENABLE_BUILT_IN_PLUGINS
769 plugins_lttng_utils_babeltrace_plugin_lttng_utils_la_LIBADD += \
770 lib/libbabeltrace2.la \
771 common/libcommon.la \
772 logging/liblogging.la \
773 plugins/common/param-validation/libparam-validation.la
774 endif # !ENABLE_BUILT_IN_PLUGINS
775 endif # ENABLE_DEBUG_INFO
778 cpp-common/vendor/optional-lite/optional.hpp.license \
779 cpp-common/vendor/span-lite/span.hpp.license \
780 cpp-common/vendor/string-view-lite/string_view.hpp.license