From fb395b56dd2432b862c550bad7b4bbe1f205ec59 Mon Sep 17 00:00:00 2001 From: Andreas Hansson Date: Thu, 22 Mar 2012 06:34:50 -0400 Subject: Scons: Remove Werror=False in SConscript files This patch removes the overriding of "-Werror" in a handful of cases. The code compiles with gcc 4.6.3 and clang 3.0 without any warnings, and thus without any errors. There are no functional changes introduced by this patch. In the future, rather than ypassing "-Werror", address the warnings. --- src/mem/ruby/common/SConscript | 2 +- src/mem/ruby/network/garnet/fixed-pipeline/SConscript | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mem/ruby') diff --git a/src/mem/ruby/common/SConscript b/src/mem/ruby/common/SConscript index 8c2442c00..d2cd2f457 100644 --- a/src/mem/ruby/common/SConscript +++ b/src/mem/ruby/common/SConscript @@ -39,5 +39,5 @@ Source('Driver.cc') Source('Global.cc') Source('Histogram.cc') Source('NetDest.cc') -Source('Set.cc', Werror=False) +Source('Set.cc') Source('SubBlock.cc') diff --git a/src/mem/ruby/network/garnet/fixed-pipeline/SConscript b/src/mem/ruby/network/garnet/fixed-pipeline/SConscript index 0010f3d1a..82d11cb01 100644 --- a/src/mem/ruby/network/garnet/fixed-pipeline/SConscript +++ b/src/mem/ruby/network/garnet/fixed-pipeline/SConscript @@ -38,8 +38,8 @@ SimObject('GarnetNetwork_d.py') SimObject('GarnetRouter_d.py') Source('GarnetLink_d.cc') -Source('GarnetNetwork_d.cc', Werror=False) -Source('InputUnit_d.cc', Werror=False) +Source('GarnetNetwork_d.cc') +Source('InputUnit_d.cc') Source('NetworkInterface_d.cc') Source('NetworkLink_d.cc') Source('OutVcState_d.cc') -- cgit v1.2.3