summaryrefslogtreecommitdiff
path: root/src/mem/ruby/common/SConscript
diff options
context:
space:
mode:
authorAndreas Hansson <andreas.hansson@arm.com>2012-03-22 06:34:50 -0400
committerAndreas Hansson <andreas.hansson@arm.com>2012-03-22 06:34:50 -0400
commitfb395b56dd2432b862c550bad7b4bbe1f205ec59 (patch)
treed302fc65bf8b4c2a6b217e48a58a175be6fd01f4 /src/mem/ruby/common/SConscript
parent12742835bc8e569b74efb396ef211d7b581ae3b8 (diff)
downloadgem5-fb395b56dd2432b862c550bad7b4bbe1f205ec59.tar.xz
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.
Diffstat (limited to 'src/mem/ruby/common/SConscript')
-rw-r--r--src/mem/ruby/common/SConscript2
1 files changed, 1 insertions, 1 deletions
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')