|
From: <sv...@va...> - 2015-01-01 18:26:12
|
Author: florian
Date: Thu Jan 1 18:26:05 2015
New Revision: 14841
Log:
Add -std=gnu99 to the list of compile flags.
Remove -Wno-long-long as it is no longer needed. long long is part
of C99.
Modified:
trunk/Makefile.all.am
Modified: trunk/Makefile.all.am
==============================================================================
--- trunk/Makefile.all.am (original)
+++ trunk/Makefile.all.am Thu Jan 1 18:26:05 2015
@@ -98,6 +98,7 @@
# 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 @@
-Wpointer-arith \
-Wstrict-prototypes \
-Wmissing-declarations \
- -Wno-long-long \
@FLAG_W_CAST_QUAL@ \
@FLAG_W_WRITE_STRINGS@ \
@FLAG_W_FORMAT@ \
|