From: Nathan Binkert Date: Sun, 28 Sep 2008 04:03:50 +0000 (-0700) Subject: gcc: Version 4.3 adds some warnings that we're turning off. X-Git-Tag: m5_2.0_beta6~17 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d2f172ab8d80e881ea53dd5a5cd61004a49ea8e6;p=gem5.git gcc: Version 4.3 adds some warnings that we're turning off. We just can't deal with right now. --- 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']: