From 6f1e58b922183f2573e611b544e5173741bf8a18 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Sun, 7 Sep 2014 22:57:18 -0400 Subject: [PATCH] add more warning flags to non-release builds apparently we are developers who like to compare doubles incorrectly. this ends now. --- configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 952085f2f..78bb466df 100644 --- a/configure.ac +++ b/configure.ac @@ -1018,7 +1018,11 @@ m4_ifdef([v_mic], EFL_COMPILER_FLAG([-Wpointer-arith]) EFL_COMPILER_FLAG([-W]) EFL_COMPILER_FLAG([-Wno-missing-field-initializers]) - EFL_COMPILER_FLAG([-Wmaybe-uninitialized]) + EFL_COMPILER_FLAG([-Wfloat-equal]) + EFL_COMPILER_FLAG([-Wuninitialized]) + EFL_COMPILER_FLAG([-Wundef]) + EFL_COMPILER_FLAG([-Wcast-align]) + EFL_COMPILER_FLAG([-Wformat=2]) ]) SUID_CFLAGS=-fPIE