From d2f172ab8d80e881ea53dd5a5cd61004a49ea8e6 Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Sat, 27 Sep 2008 21:03:50 -0700 Subject: [PATCH] gcc: Version 4.3 adds some warnings that we're turning off. We just can't deal with right now. --- SConstruct | 1 + 1 file changed, 1 insertion(+) 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']: -- 2.30.2