From bf470982f998b2b18545cc335f469a20e457acdd Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 9 Jan 2021 01:16:11 -0500 Subject: sim: enable -Werror by default for some arches We've had this off for a long time because the sim code was way too full of warnings for it to be feasible. However, I've cleaned things up significantly from when this was first merged, and we can start to turn this around. Change the macro to enable -Werror by default, and allow ports to opt out. New ports will get it automatically (and we can push back on them if they try to turn it off). Also turn it off for the few ports that still hit warnings for me. All the rest will get the new default, and we'll wait for feedback if/when new issues come up. --- sim/pru/ChangeLog | 4 ++++ sim/pru/configure | 8 +++----- 2 files changed, 7 insertions(+), 5 deletions(-) (limited to 'sim/pru') diff --git a/sim/pru/ChangeLog b/sim/pru/ChangeLog index 0b37812..b5563a8 100644 --- a/sim/pru/ChangeLog +++ b/sim/pru/ChangeLog @@ -1,5 +1,9 @@ 2021-01-09 Mike Frysinger + * configure: Regenerate. + +2021-01-09 Mike Frysinger + * sim-main.h: Include config.h. 2021-01-08 Mike Frysinger diff --git a/sim/pru/configure b/sim/pru/configure index 7cc3478..5246f8e 100755 --- a/sim/pru/configure +++ b/sim/pru/configure @@ -13684,11 +13684,9 @@ if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then fi WERROR_CFLAGS="" -if test "${ERROR_ON_WARNING}" = yes ; then -# NOTE: Disabled in the sim dir due to most sims generating warnings. -# WERROR_CFLAGS="-Werror" - true -fi + if test "${ERROR_ON_WARNING}" = yes ; then + WERROR_CFLAGS="-Werror" + fi build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \ -Wpointer-sign \ -- cgit v1.1