aboutsummaryrefslogtreecommitdiff
path: root/none
diff options
context:
space:
mode:
authorflorian <florian@a5019735-40e9-0310-863c-91ae7b9d1cf9>2015-09-05 08:41:32 +0000
committerflorian <florian@a5019735-40e9-0310-863c-91ae7b9d1cf9>2015-09-05 08:41:32 +0000
commit23924e103c325e5e6e0a405f513c1f3746c64a41 (patch)
tree3f724a8e2dd45cbb821c1f4dcd70e5846d7d45d0 /none
parentff7469da55e9fbca28e00595ed6fa45bb0269289 (diff)
downloadvalgrind-23924e103c325e5e6e0a405f513c1f3746c64a41.tar.gz
Do not compile ansi.c with clang as that compiler does not
recognise the -ansi command line option. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15628 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'none')
-rw-r--r--none/tests/Makefile.am7
1 files changed, 6 insertions, 1 deletions
diff --git a/none/tests/Makefile.am b/none/tests/Makefile.am
index 79f0e4efe..54f2a7eec 100644
--- a/none/tests/Makefile.am
+++ b/none/tests/Makefile.am
@@ -198,7 +198,7 @@ EXTRA_DIST = \
process_vm_readv_writev.stderr.exp process_vm_readv_writev.vgtest
check_PROGRAMS = \
- ansi args \
+ args \
async-sigs \
bitfield1 \
bug129866 bug234814 \
@@ -250,6 +250,11 @@ if ! VGCONF_OS_IS_DARWIN
check_PROGRAMS += rlimit64_nofile
endif
+# clang does now know -ansi
+if ! COMPILER_IS_CLANG
+ check_PROGRAMS += ansi
+endif
+
if BUILD_IFUNC_TESTS
check_PROGRAMS += ifunc
endif