From caf2d83659ce326c23bca0393a2a88749c4a9def Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Tue, 27 Oct 2015 17:11:31 +0000 Subject: Use -std=c11 for C11 conform/ tests. Now that GCC 4.7 or later is required to build glibc, this patch makes the conformance tests use -std=c11 for C11 tests instead of -std=c1x -D_ISOC11_SOURCE. Tested for x86_64 and x86 (conform/ tests). * conform/GlibcConform.pm ($CFLAGS{"ISO11"}): Use -std=c11 instead of -std=c1x -D_ISOC11_SOURCE. --- conform/GlibcConform.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'conform') diff --git a/conform/GlibcConform.pm b/conform/GlibcConform.pm index 8aeada4821..218b6ec63a 100644 --- a/conform/GlibcConform.pm +++ b/conform/GlibcConform.pm @@ -27,7 +27,7 @@ require Exporter; # Compiler options for each standard. $CFLAGS{"ISO"} = "-ansi"; $CFLAGS{"ISO99"} = "-std=c99"; -$CFLAGS{"ISO11"} = "-std=c1x -D_ISOC11_SOURCE"; +$CFLAGS{"ISO11"} = "-std=c11"; $CFLAGS{"POSIX"} = "-D_POSIX_C_SOURCE=199506L -ansi"; $CFLAGS{"XPG3"} = "-ansi -D_XOPEN_SOURCE"; $CFLAGS{"XPG4"} = "-ansi -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED"; -- cgit v1.2.3