diff options
author | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 16:40:09 +0000 |
---|---|---|
committer | hans@chromium.org <hans@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-02-24 16:40:09 +0000 |
commit | 04a8454da64b62bfad5091efd5cf1143443283f0 (patch) | |
tree | e51cf34071a623e7da9bf2227c89434fd802a448 /build | |
parent | c41b06fdf4ffb124898b71794649b9abc4f7c857 (diff) | |
download | chromium_src-04a8454da64b62bfad5091efd5cf1143443283f0.zip chromium_src-04a8454da64b62bfad5091efd5cf1143443283f0.tar.gz chromium_src-04a8454da64b62bfad5091efd5cf1143443283f0.tar.bz2 |
Disable -Wsign-compare for Clang.
Since ICU rolled, the Clang build on Mac is broken because of this
warning.
BUG=74019
TEST=all clang bots go green
-Wno-sign-compare
Review URL: http://codereview.chromium.org/6581035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@75892 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build/common.gypi b/build/common.gypi index 467e902..6772e39 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -1347,6 +1347,8 @@ # http://code.google.com/p/googletest/source/detail?r=446 . # TODO(thakis): Use -isystem instead (http://crbug.com/58751 ). '-Wno-unnamed-type-template-args', + # crbug.com/74019 (ICU doesn't build with Clang) + '-Wno-sign-compare', ], }], ['clang==1 and clang_use_chrome_plugins==1', { |