diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | build/standalone.gypi | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index 93df69f6d3..3014ed6fa7 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ /build/gyp /buildtools /out +/testing/corpus /testing/gmock /testing/gtest /v8 diff --git a/build/standalone.gypi b/build/standalone.gypi index a8818db720..c0eaef419d 100644 --- a/build/standalone.gypi +++ b/build/standalone.gypi @@ -144,6 +144,10 @@ 'cflags': [ '-Wall', '-W', + '-Wno-missing-field-initializers', + # Code might someday be made clean for -Wsign-compare, but for now + # this produces too much noise to be useful. + '-Wno-sign-compare', '-Wno-unused-parameter', '-pthread', '-fno-exceptions', |