From 2a4357bfd0c688a19cfd6b1c600bb2d2d6fa6151 Mon Sep 17 00:00:00 2001 From: "Bobby R. Bruce" Date: Wed, 30 Sep 2020 10:55:03 -0700 Subject: [PATCH] scons: Removed -Werror for the gem5 20.1 release While gem5 compiles on all our supported compilers, removing the -Werror flag on the stable branch ensures that, as new compilers are released with stricter warnings, gem5 remains compilable. Change-Id: I9a356472dc4d729a3fef9f1455814c900103bd66 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/35455 Maintainer: Bobby R. Bruce Reviewed-by: Jason Lowe-Power Reviewed-by: Gabe Black Tested-by: kokoro --- SConstruct | 6 ------ 1 file changed, 6 deletions(-) diff --git a/SConstruct b/SConstruct index 621f923cd..0d8159bba 100755 --- a/SConstruct +++ b/SConstruct @@ -337,12 +337,6 @@ if main['GCC'] or main['CLANG']: main.Append(PSHLINKFLAGS=shared_partial_flags) main.Append(PLINKFLAGS=shared_partial_flags) - # Treat warnings as errors but white list some warnings that we - # want to allow (e.g., deprecation warnings). - main.Append(CCFLAGS=['-Werror', - '-Wno-error=deprecated-declarations', - '-Wno-error=deprecated', - ]) else: error('\n'.join(( "Don't know what compiler options to use for your compiler.", -- 2.30.2