mirror of https://github.com/grpc/grpc-node.git
Merge pull request #798 from murgatroid99/gcc8_build_fix
Omit a build warning that v8 headers violate
This commit is contained in:
commit
c84fe2d24e
|
@ -963,7 +963,8 @@
|
|||
],
|
||||
'cflags': [
|
||||
'-pthread',
|
||||
'-Wno-error=deprecated-declarations'
|
||||
'-Wno-error=deprecated-declarations',
|
||||
'-Wno-cast-function-type'
|
||||
],
|
||||
"conditions": [
|
||||
['OS=="win" or runtime=="electron"', {
|
||||
|
|
|
@ -312,7 +312,8 @@
|
|||
],
|
||||
'cflags': [
|
||||
'-pthread',
|
||||
'-Wno-error=deprecated-declarations'
|
||||
'-Wno-error=deprecated-declarations',
|
||||
'-Wno-cast-function-type'
|
||||
],
|
||||
"conditions": [
|
||||
['OS=="win" or runtime=="electron"', {
|
||||
|
|
Loading…
Reference in New Issue