Merge pull request #45 from murgatroid99/native_boringssl_build_fix

Disable warning in recent GCC versions that hits BoringSSL
This commit is contained in:
Michael Lumish 2017-09-25 14:48:32 -07:00 committed by GitHub
commit d741f5dc86
2 changed files with 6 additions and 0 deletions

View File

@ -207,6 +207,9 @@
'target_name': 'boringssl',
'product_prefix': 'lib',
'type': 'static_library',
'cflags': [
'-Wimplicit-fallthrough=0'
],
'dependencies': [
],
'sources': [

View File

@ -194,6 +194,9 @@
'target_name': '${lib.name}',
'product_prefix': 'lib',
'type': 'static_library',
'cflags': [
'-Wimplicit-fallthrough=0'
],
'dependencies': [
% for dep in getattr(lib, 'deps', []):
'${dep}',