|
From: <sv...@va...> - 2015-09-05 08:41:39
|
Author: florian
Date: Sat Sep 5 09:41:32 2015
New Revision: 15628
Log:
Do not compile ansi.c with clang as that compiler does not
recognise the -ansi command line option.
Modified:
trunk/none/tests/Makefile.am
Modified: trunk/none/tests/Makefile.am
==============================================================================
--- trunk/none/tests/Makefile.am (original)
+++ trunk/none/tests/Makefile.am Sat Sep 5 09:41:32 2015
@@ -198,7 +198,7 @@
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 @@
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
|