From: Jo-Philipp Wich Date: Tue, 2 Mar 2010 00:47:47 +0000 (+0000) Subject: [build] drop -Werror, newer gcc versions emit more warnings, stuff might break on... X-Git-Tag: 0.10.0~851 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=bf8a7d61cfbd899fbb679c37143d6301e7ed2881 [build] drop -Werror, newer gcc versions emit more warnings, stuff might break on some targets --- diff --git a/build/gccconfig.mk b/build/gccconfig.mk index 1557c3b1e..97d19bde3 100644 --- a/build/gccconfig.mk +++ b/build/gccconfig.mk @@ -10,7 +10,7 @@ RANLIB = ranlib CFLAGS = -O2 FPIC = -fPIC EXTRA_CFLAGS = --std=gnu99 -WFLAGS = -Wall -Werror -pedantic +WFLAGS = -Wall -pedantic CPPFLAGS = COMPILE = $(CC) $(CPPFLAGS) $(CFLAGS) $(EXTRA_CFLAGS) $(WFLAGS) ifeq ($(OS),Darwin)