diff options
author | Andreas Hansson <andreas.hansson@arm.com> | 2012-03-22 06:34:50 -0400 |
---|---|---|
committer | Andreas Hansson <andreas.hansson@arm.com> | 2012-03-22 06:34:50 -0400 |
commit | fb395b56dd2432b862c550bad7b4bbe1f205ec59 (patch) | |
tree | d302fc65bf8b4c2a6b217e48a58a175be6fd01f4 /src/cpu | |
parent | 12742835bc8e569b74efb396ef211d7b581ae3b8 (diff) | |
download | gem5-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/cpu')
-rw-r--r-- | src/cpu/testers/networktest/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cpu/testers/networktest/SConscript b/src/cpu/testers/networktest/SConscript index 5b6b18d42..06ab0f2aa 100644 --- a/src/cpu/testers/networktest/SConscript +++ b/src/cpu/testers/networktest/SConscript @@ -32,6 +32,6 @@ Import('*') SimObject('NetworkTest.py') -Source('networktest.cc', Werror=False) +Source('networktest.cc') DebugFlag('NetworkTest') |