mirror of https://github.com/grpc/grpc-node.git
Merge pull request #45 from murgatroid99/native_boringssl_build_fix
Disable warning in recent GCC versions that hits BoringSSL
This commit is contained in:
commit
d741f5dc86
|
@ -207,6 +207,9 @@
|
|||
'target_name': 'boringssl',
|
||||
'product_prefix': 'lib',
|
||||
'type': 'static_library',
|
||||
'cflags': [
|
||||
'-Wimplicit-fallthrough=0'
|
||||
],
|
||||
'dependencies': [
|
||||
],
|
||||
'sources': [
|
||||
|
|
|
@ -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}',
|
||||
|
|
Loading…
Reference in New Issue