From 993af3e29a569fd17df0bea613f538aa951a3ff4 Mon Sep 17 00:00:00 2001 From: James Zern Date: Fri, 24 Jun 2011 16:37:19 -0400 Subject: [PATCH] makefile.unix: disable -Wvla by default Rather than add bulk to test for the new flag, simply comment out -Wvla to keep the base makefile simple. -Wvla was added in gcc-4.3.0. Change-Id: I21feb456d7498ea628defb436a50c3d828e7f971 --- makefile.unix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile.unix b/makefile.unix index aef7db29..14fed5cd 100644 --- a/makefile.unix +++ b/makefile.unix @@ -41,7 +41,7 @@ EXTRA_FLAGS += -Wextra -Wold-style-definition EXTRA_FLAGS += -Wmissing-prototypes EXTRA_FLAGS += -Wmissing-declarations EXTRA_FLAGS += -Wdeclaration-after-statement -EXTRA_FLAGS += -Wvla +# EXTRA_FLAGS += -Wvla #### Nothing should normally be changed below this line ####