summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-16 19:28:06 +0000
committerevanm@google.com <evanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-16 19:28:06 +0000
commitb91902d2d0822efddcc04d7feecbe26704e4f0d2 (patch)
tree5ea178b825f69ef64272d29507a14b7d8f2cf54e /build
parent8f113df07aaca851457ba19602f01087e520f4df (diff)
downloadchromium_src-b91902d2d0822efddcc04d7feecbe26704e4f0d2.zip
chromium_src-b91902d2d0822efddcc04d7feecbe26704e4f0d2.tar.gz
chromium_src-b91902d2d0822efddcc04d7feecbe26704e4f0d2.tar.bz2
Unignore most warnings on POSIX in build/SConscript.main.
BUG=2053 Patch from Paweł Hajdan jr <phajdan.jr@gmail.com>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/SConscript.main17
1 files changed, 3 insertions, 14 deletions
diff --git a/build/SConscript.main b/build/SConscript.main
index 5dcda05..1aa9299 100644
--- a/build/SConscript.main
+++ b/build/SConscript.main
@@ -311,21 +311,10 @@ elif env['PLATFORM'] == 'posix':
'webkit',
]
- # TODO: fix code that triggers these warnings.
excluded_warnings = [
- '-Wno-unknown-pragmas', # TODO: remove all the Windows-specific #pragmas.
- '-Wno-unused-function', # TODO: there's just one Skia function.
- '-Wno-unused-variable', # TODO: there's just one v8 function.
- '-Wno-switch', # TODO: this is likely masking real bugs.
- '-Wno-sign-compare', # TODO: this is likely masking real bugs.
- '-Wno-missing-braces', # TODO: just a file in net.
-
- # Not TODO: This is technically nonstandard, but a lot of the image
- # decoding code depends on it and osx wants this.
- '-Wno-multichar',
-
- '-Wno-deprecated', # Needed for using ext/hash_map on GCC 4.3
- '-Wno-reorder', # TODO: many tedious small fixes.
+ # TODO: Clean up uses of ext/hash_map and remove this.
+ # (see unordered_map and base/hash_tables.h)
+ '-Wno-deprecated' # Needed for using ext/hash_map on GCC 4.3
]
env.Replace(
CCFLAGS = ['-m32', '-g', '-pthread'],