mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-04 18:56:10 +00:00
cachegrind/callgrind fails ann[12] tests because of missing a.c These testcases fail because the dist tar is missing the a.c (auto-annotated) source file. Fix by adding it to EXTRA_DIST. https://bugs.kde.org/show_bug.cgi?id=406352
40 lines
992 B
Makefile
40 lines
992 B
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
SUBDIRS = .
|
|
if VGCONF_ARCHS_INCLUDE_X86
|
|
SUBDIRS += x86
|
|
endif
|
|
|
|
DIST_SUBDIRS = x86 .
|
|
|
|
dist_noinst_SCRIPTS = filter_stderr filter_cachesim_discards
|
|
|
|
# Note that test.c and a.c are not compiled.
|
|
# They just serve as input for cg_annotate in ann1 and ann2.
|
|
EXTRA_DIST = \
|
|
cgout-test \
|
|
ann1.post.exp ann1.stderr.exp ann1.vgtest \
|
|
ann2.post.exp ann2.stderr.exp ann2.vgtest \
|
|
chdir.vgtest chdir.stderr.exp \
|
|
clreq.vgtest clreq.stderr.exp \
|
|
dlclose.vgtest dlclose.stderr.exp dlclose.stdout.exp \
|
|
notpower2.vgtest notpower2.stderr.exp \
|
|
test.c a.c \
|
|
wrap5.vgtest wrap5.stderr.exp wrap5.stdout.exp
|
|
|
|
check_PROGRAMS = \
|
|
chdir clreq dlclose myprint.so
|
|
|
|
AM_CFLAGS += $(AM_FLAG_M3264_PRI)
|
|
AM_CXXFLAGS += $(AM_FLAG_M3264_PRI)
|
|
|
|
# C ones
|
|
dlclose_LDADD = -ldl
|
|
if VGCONF_OS_IS_DARWIN
|
|
myprint_so_LDFLAGS = $(AM_CFLAGS) -dynamic -dynamiclib -all_load -fpic
|
|
else
|
|
myprint_so_LDFLAGS = $(AM_CFLAGS) -shared -fPIC
|
|
endif
|
|
myprint_so_CFLAGS = $(AM_CFLAGS) -fPIC
|