diff options
author | sewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-01-22 01:36:51 +0000 |
---|---|---|
committer | sewardj <sewardj@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2009-01-22 01:36:51 +0000 |
commit | 74a74d84c7e80e930cc45f234aec24e2c94d8fb7 (patch) | |
tree | c6ca7e56967531c29c11b9f02f73d0640fe8eed0 /memcheck | |
parent | a6dbb3fe36d405ed53ad00730d19cf3501670eed (diff) |
Don't hardwire @FLAG_M32@ in here, since this directory isn't arch
specific (and so the build fails eg on a 64 bit machine that does
not have a 32-bit toolchain installed). Use $(AM_FLAG_M3264_PRI)
instead.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@9018 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'memcheck')
-rw-r--r-- | memcheck/tests/linux/Makefile.am | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/memcheck/tests/linux/Makefile.am b/memcheck/tests/linux/Makefile.am index b0ad79f0..bd713e16 100644 --- a/memcheck/tests/linux/Makefile.am +++ b/memcheck/tests/linux/Makefile.am @@ -9,9 +9,8 @@ check_PROGRAMS = \ timerfd-syscall AM_CPPFLAGS = -I$(top_srcdir)/include -AM_CFLAGS = $(WERROR) @FLAG_M32@ -Winline -Wall -Wshadow -g \ +AM_CFLAGS = $(WERROR) $(AM_FLAG_M3264_PRI) -Winline -Wall -Wshadow -g \ $(FLAG_MMMX) $(FLAG_MSSE) AM_CXXFLAGS = $(AM_CFLAGS) -AM_CCASFLAGS = @FLAG_M32@ timerfd_syscall_LDADD = -lrt |