Project

General

Profile

Bug #1165 » 0001-RFC-Add-POPT_CFLAGS-to-lttng_CFLAGS.patch

Yannick Lamarre, 02/14/2019 05:14 PM

View differences:

src/bin/lttng/Makefile.am
commands/disable_rotation.c \
utils.c utils.h lttng.c
lttng_CFLAGS = $(AM_CFLAGS) $(POPT_CFLAGS)
lttng_LDADD = $(top_builddir)/src/lib/lttng-ctl/liblttng-ctl.la \
$(top_builddir)/src/common/libcommon.la \
$(top_builddir)/src/common/config/libconfig.la \
tests/regression/kernel/Makefile.am
noinst_PROGRAMS = select_poll_epoll
select_poll_epoll_SOURCES = select_poll_epoll.c
select_poll_epoll_LDADD = $(POPT_LIBS)
select_poll_epoll_CFLAGS = -fno-stack-protector -D_FORTIFY_SOURCE=0 $(AM_CFLAGS)
select_poll_epoll_CFLAGS = $(POPT_CFLAGS) -fno-stack-protector -D_FORTIFY_SOURCE=0 $(AM_CFLAGS)
all-local:
@if [ x"$(srcdir)" != x"$(builddir)" ]; then \
tests/regression/ust/multi-lib/Makefile.am
noinst_PROGRAMS = exec-with-callsites exec-without-callsites
exec_with_callsites_SOURCES = multi-lib-test.c callsites.c
exec_with_callsites_LDFLAGS = -ldl -lpopt
exec_with_callsites_CFLAGS = $(AM_CFLAGS) -DHAS_CALLSITES=1
exec_with_callsites_LDFLAGS = -ldl $(POPT_LIBS)
exec_with_callsites_CFLAGS = $(POPT_CFLAGS) $(AM_CFLAGS) -DHAS_CALLSITES=1
exec_without_callsites_SOURCES = multi-lib-test.c
exec_without_callsites_LDFLAGS = -ldl -lpopt -llttng-ust
exec_without_callsites_LDFLAGS = -ldl $(POPT_LIBS) -llttng-ust
exec_without_callsites_LDADD = probes.o
exec_without_callsites_CFLAGS = $(AM_CFLAGS) -DHAS_CALLSITES=0
exec_without_callsites_CFLAGS = $(POPT_CFLAGS) $(AM_CFLAGS) -DHAS_CALLSITES=0
PROBES_SRC=probes.c probes.h
PROBES_LDF=-shared -module -llttng-ust -avoid-version -rpath $(abs_builddir)/.libs/
(2-2/2)