Commit c2c6a9a6 authored by machenbach's avatar machenbach Committed by Commit bot

[build] Switch off warning on gcc bots.

Switch off maybe-uninitialized warning as it gives often
false positives with optimizations in gcc.

NOTRY=true
TBR=bmeurer@chromium.org, zhengxing.li@intel.com, caitp@igalia.com, ahaas@chromium.org

Committed: https://crrev.com/0ef0d5b2b8cffd1e3647d79c5ba19752bbbc469c
Review-Url: https://codereview.chromium.org/2425913002
Cr-Original-Commit-Position: refs/heads/master@{#40382}
Cr-Commit-Position: refs/heads/master@{#40394}
parent 60cb6013
......@@ -503,7 +503,10 @@
},
'conditions':[
['clang==0', {
'cflags+': ['-Wno-sign-compare',],
'cflags+': [
'-Wno-sign-compare',
'-Wno-uninitialized',
],
}],
['clang==1 or host_clang==1', {
# This is here so that all files get recompiled after a clang roll and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment