summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/SConscript7
-rw-r--r--src/base/compiler.hh2
2 files changed, 8 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
diff --git a/src/base/compiler.hh b/src/base/compiler.hh
index b1fea055c..1a104dd87 100644
--- a/src/base/compiler.hh
+++ b/src/base/compiler.hh
@@ -80,6 +80,8 @@
# define M5_VAR_USED __attribute__((unused))
# define M5_ATTR_PACKED __attribute__ ((__packed__))
# define M5_NO_INLINE __attribute__ ((__noinline__))
+# define M5_DEPRECATED __attribute__((deprecated))
+# define M5_DEPRECATED_MSG(MSG) __attribute__((deprecated(MSG)))
#endif
#if defined(__clang__)