mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
Compiler produces position independent executables (PIE) by default which gets in the way of some unit tests. Fixes BZ#377066. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16349
27 lines
635 B
Makefile
27 lines
635 B
Makefile
|
|
include $(top_srcdir)/Makefile.tool-tests.am
|
|
|
|
dist_noinst_SCRIPTS = \
|
|
filter_stderr filter_defcfaexpr
|
|
|
|
EXTRA_DIST = \
|
|
access_below_sp_1.vgtest \
|
|
access_below_sp_1.stderr.exp access_below_sp_1.stdout.exp \
|
|
access_below_sp_2.vgtest \
|
|
access_below_sp_2.stderr.exp access_below_sp_2.stdout.exp \
|
|
defcfaexpr.vgtest defcfaexpr.stderr.exp \
|
|
int3-amd64.vgtest int3-amd64.stderr.exp int3-amd64.stdout.exp
|
|
|
|
check_PROGRAMS = \
|
|
access_below_sp \
|
|
defcfaexpr \
|
|
int3-amd64
|
|
|
|
|
|
AM_CFLAGS += @FLAG_M64@
|
|
AM_CXXFLAGS += @FLAG_M64@
|
|
AM_CCASFLAGS += @FLAG_M64@
|
|
|
|
defcfaexpr_SOURCES = defcfaexpr.S
|
|
defcfaexpr_CFLAGS = $(AM_CFLAGS) @FLAG_NO_PIE@
|