diff options
author | Nathan Binkert <nate@binkert.org> | 2008-09-27 21:03:50 -0700 |
---|---|---|
committer | Nathan Binkert <nate@binkert.org> | 2008-09-27 21:03:50 -0700 |
commit | d2f172ab8d80e881ea53dd5a5cd61004a49ea8e6 (patch) | |
tree | a5697b4d359c7e6116b08455f7b4426328a77b4b /SConstruct | |
parent | 80d9be86e616e819cc3c9a0bbc8a42a5beb41247 (diff) | |
download | gem5-d2f172ab8d80e881ea53dd5a5cd61004a49ea8e6.tar.xz |
gcc: Version 4.3 adds some warnings that we're turning off.
We just can't deal with right now.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index cec2d5173..f91cb35fe 100644 --- a/SConstruct +++ b/SConstruct @@ -351,6 +351,7 @@ if env['GCC']: env.Append(CCFLAGS='-pipe') env.Append(CCFLAGS='-fno-strict-aliasing') env.Append(CCFLAGS=Split('-Wall -Wno-sign-compare -Werror -Wundef')) + env.Append(CXXFLAGS='-Wno-deprecated') elif env['ICC']: pass #Fix me... add warning flags once we clean up icc warnings elif env['SUNCC']: |