diff options
author | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2015-02-11 10:23:24 -0500 |
---|---|---|
committer | Andreas Sandberg <Andreas.Sandberg@ARM.com> | 2015-02-11 10:23:24 -0500 |
commit | 9e6f803254cbf3f5f491775debdc6593c3329da8 (patch) | |
tree | 0fa1a55ac41adcb2c3c1a61dd0b5aa9c9d897ee3 /src/SConscript | |
parent | c9b8616c515f7689baf0706a9c17d3f9d625ef04 (diff) | |
download | gem5-9e6f803254cbf3f5f491775debdc6593c3329da8.tar.xz |
base: Add compiler macros to add deprecation warnings
Gcc and clang both provide an attribute that can be used to flag a
function as deprecated at compile time. This changeset adds a gem5
compiler macro for that compiler feature. The macro can be used to
indicate that a legacy API within gem5 has been deprecated and provide
a graceful migration to the new API.
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 |