diff options
author | Leith Bade <leith@mapbox.com> | 2015-02-03 13:54:12 +1100 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2015-02-03 11:38:43 -0800 |
commit | 33f611cdf8d22aacdb252dee7f262a644af10882 (patch) | |
tree | cf931d9c16179a9f390ca684b9946994528e1d6d /gyp | |
parent | 33b4922220d19a5049072b59cbad01358099b1cf (diff) | |
download | qtlocation-mapboxgl-33f611cdf8d22aacdb252dee7f262a644af10882.tar.gz |
Fix -W flags for boost
Fixes #801
Diffstat (limited to 'gyp')
-rw-r--r-- | gyp/common.gypi | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/gyp/common.gypi b/gyp/common.gypi index d219ba2f99..92cfb2ab18 100644 --- a/gyp/common.gypi +++ b/gyp/common.gypi @@ -22,18 +22,13 @@ '-Wno-variadic-macros', '-frtti', '-fexceptions', - '-Wno-error=unused-parameter', ], 'GCC_WARN_PEDANTIC': 'YES', 'GCC_WARN_UNINITIALIZED_AUTOS': 'YES_AGGRESSIVE', }, }], ['OS=="linux"', { - 'cflags_cc': [ - '-Wno-unknown-pragmas', # We are using '#pragma mark', but it is only available on Darwin. - '-Wno-literal-suffix', # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61653 - '-Wno-unknown-warning-option', - '-Wno-error=unused-parameter', + 'cflags_cc': ['-Wno-unknown-pragmas', # We are using '#pragma mark', but it is only available on Darwin. ], }], ], |