Index: build/common.gypi |
diff --git a/build/common.gypi b/build/common.gypi |
index 74836e7ab5931378d7b5a7d0853e031a1ba6e1aa..d3c029a94eeb77afa5d4a4ed6823984ac86b6828 100644 |
--- a/build/common.gypi |
+++ b/build/common.gypi |
@@ -3918,6 +3918,12 @@ |
['_toolset=="target"', { |
'conditions': [ |
['clang==0', { |
+ 'cflags': [ |
+ # Don't warn about "maybe" uninitialized. Clang doesn't |
+ # include this in -Wall but gcc does, and it gives false |
+ # positives. |
+ '-Wno-maybe-uninitialized', |
+ ], |
'cflags_cc': [ |
# The codesourcery arm-2009q3 toolchain warns at that the ABI |
# has changed whenever it encounters a varargs function. This |