gcc: Version 4.3 adds some warnings that we're turning off.
authorNathan Binkert <nate@binkert.org>
Sun, 28 Sep 2008 04:03:50 +0000 (21:03 -0700)
committerNathan Binkert <nate@binkert.org>
Sun, 28 Sep 2008 04:03:50 +0000 (21:03 -0700)
We just can't deal with right now.

SConstruct

index cec2d5173049768482c7daaad40a84f625bced15..f91cb35fef90e35fa6eef55acc7303c1d76870ff 100644 (file)
@@ -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']: