From edea4229aa27fbf5840448256b857585bf65bbe7 Mon Sep 17 00:00:00 2001 From: Ichthyostega Date: Mon, 22 Dec 2008 03:54:34 +0100 Subject: [PATCH] SCons: add missing -Wextra compiler flag --- SConstruct | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SConstruct b/SConstruct index 58b47e4dc..52493aa4b 100644 --- a/SConstruct +++ b/SConstruct @@ -77,7 +77,7 @@ def setupBasicEnvironment(): , ICONDIR=ICONDIR , CPPPATH=["#"+SRCDIR] # used to find includes, "#" means always absolute to build-root , CPPDEFINES=['-DLUMIERA_VERSION='+VERSION ] # note: it's a list to append further defines - , CCFLAGS='-Wall ' # -fdiagnostics-show-option + , CCFLAGS='-Wall -Wextra ' , CFLAGS='-std=gnu99' ) RegisterIcon_Builder(env,SVGRENDERER)