diff options
author | Matthew Waters <matthew@centricular.com> | 2020-10-23 12:10:52 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2020-10-23 13:21:40 +1100 |
commit | d68864b51f788ad96440120ae47289d3163204d2 (patch) | |
tree | 7e53ee52412be13efcb618b51598cb057864ca72 | |
parent | 15f45dd613d159c4a0efa6af09a03e00523f9340 (diff) |
config/darwin: unconditionally add -Wno-error=implicit-function-declaration
A lot of recipes in 1.16 aren't ready for XCode 12's new default of
erroring out. Wholesale disable that warning where possible.
Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/648>
-rw-r--r-- | config/darwin.config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/darwin.config b/config/darwin.config index ecfc9059..1678cdcd 100644 --- a/config/darwin.config +++ b/config/darwin.config @@ -57,6 +57,7 @@ elif target_arch == Architecture.X86: os.environ['VERSIONER_PYTHON_PREFER_32_BIT'] = 'yes' arch_cflags += ' -Wno-error=format-nonliteral ' +arch_cflags += ' -Wno-error=implicit-function-declaration ' incl_dir = os.path.join(prefix, 'include') |