diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-22 22:38:59 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-22 22:38:59 +0000 |
commit | f11ef8765d6d48dd0cf73c7388aeaf2a2de3a1f7 (patch) | |
tree | b9617d9ec35522aa56557936648db997e1a2c256 /build/SConscript.main | |
parent | 29f9fd0ec34b36c3cfe9733b46947365933d061e (diff) | |
download | chromium_src-f11ef8765d6d48dd0cf73c7388aeaf2a2de3a1f7.zip chromium_src-f11ef8765d6d48dd0cf73c7388aeaf2a2de3a1f7.tar.gz chromium_src-f11ef8765d6d48dd0cf73c7388aeaf2a2de3a1f7.tar.bz2 |
Get the majority of the files in V8Bindings/ building.
The rest are excluded from the linux build because they include
windowisms; this will be fixed later.
Also, random linux compile fixes. Extra qualifiers, unused variables, et
cetera.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1254 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/SConscript.main')
-rw-r--r-- | build/SConscript.main | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/SConscript.main b/build/SConscript.main index 1430fd7..8de0647 100644 --- a/build/SConscript.main +++ b/build/SConscript.main @@ -341,6 +341,10 @@ elif env['PLATFORM'] == 'posix': '-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', ] env.Replace( CCFLAGS = ['-m32', '-g', '-Wall', '-Werror'] + excluded_warnings, |