diff options
Diffstat (limited to 'src/SConscript')
-rwxr-xr-x | src/SConscript | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/SConscript b/src/SConscript index cffc4d157..a479464a1 100755 --- a/src/SConscript +++ b/src/SConscript @@ -1061,7 +1061,12 @@ def makeEnv(env, label, objsfx, strip = False, **kwargs): new_env.Append(LINKFLAGS='-fsanitize=undefined') werror_env = new_env.Clone() - werror_env.Append(CCFLAGS='-Werror') + # Treat warnings as errors but white list some warnings that we + # want to allow (e.g., deprecation warnings). + werror_env.Append(CCFLAGS=['-Werror', + '-Wno-error=deprecated-declarations', + '-Wno-error=deprecated', + ]) def make_obj(source, static, extra_deps = None): '''This function adds the specified source to the correct |