fix: relayd: unaligned access in trace_chunk_registry_ht_key_hash
[lttng-tools.git] / tests / utils / testapp / gen-ust-events / Makefile.am
1 # SPDX-License-Identifier: GPL-2.0-only
2
3 AM_CPPFLAGS += -I$(top_srcdir)/tests/utils -I$(srcdir) \
4 -I$(top_srcdir)/tests/utils/testapp
5
6 if HAVE_LIBLTTNG_UST_CTL
7 # Disable some warnings flags to accomodate the tracepoint headers
8 WARN_FLAGS = \
9 -Wno-redundant-decls \
10 -Wno-missing-field-initializers
11
12 AM_CFLAGS += $(WARN_FLAGS)
13 AM_CXXFLAGS += $(WARN_FLAGS)
14
15 noinst_PROGRAMS = gen-ust-events
16 gen_ust_events_SOURCES = \
17 gen-ust-events.cpp \
18 tp.c \
19 tp.h
20 gen_ust_events_LDADD = $(UST_LIBS) \
21 $(top_builddir)/tests/utils/libtestutils.la \
22 $(DL_LIBS)
23 endif
This page took 0.031744 seconds and 5 git commands to generate.