]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Add -std=gnu99 to the list of compile flags.
authorFlorian Krohm <florian@eich-krohm.de>
Thu, 1 Jan 2015 18:26:05 +0000 (18:26 +0000)
committerFlorian Krohm <florian@eich-krohm.de>
Thu, 1 Jan 2015 18:26:05 +0000 (18:26 +0000)
Remove -Wno-long-long as it is no longer needed. long long is part
of C99.

git-svn-id: svn://svn.valgrind.org/valgrind/trunk@14841

Makefile.all.am

index 44b024af511fdaa6a023c92f30345a5ca4212f6a..3b2772af9f63ea66269fd3e7266235ec578b94d1 100644 (file)
@@ -98,6 +98,7 @@ clean-noinst_DSYMS:
 # that somehow causes VG_(memset) to get into infinite recursion.
 AM_CFLAGS_BASE = \
        -O2 -g \
+       -std=gnu99 \
        -Wall \
        -Wcast-align \
        -Wmissing-prototypes \
@@ -105,7 +106,6 @@ AM_CFLAGS_BASE = \
        -Wpointer-arith \
        -Wstrict-prototypes \
        -Wmissing-declarations \
-       -Wno-long-long \
        @FLAG_W_CAST_QUAL@ \
        @FLAG_W_WRITE_STRINGS@ \
        @FLAG_W_FORMAT@ \