aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/node
diff options
context:
space:
mode:
authorGravatar murgatroid99 <mlumish@google.com>2015-07-06 12:11:44 -0700
committerGravatar murgatroid99 <mlumish@google.com>2015-07-06 12:11:44 -0700
commit357e18123d3cda43da2ceb85cde92ce017d0f755 (patch)
tree986bd5ae010ff9185f3a8b27fcd1a25996e8bee9 /src/node
parentb0d8b31b444a09e6f8a90047c0506f6cdf29986b (diff)
Link Node against static dependencies just in case
Diffstat (limited to 'src/node')
-rw-r--r--src/node/binding.gyp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node/binding.gyp b/src/node/binding.gyp
index e0220397d6..5b8c994aa1 100644
--- a/src/node/binding.gyp
+++ b/src/node/binding.gyp
@@ -25,14 +25,14 @@
['has_pkg_config == "true"', {
'link_settings': {
'libraries': [
- '<!@(pkg-config --libs-only-l grpc)'
+ '<!@(pkg-config --libs-only-l --static grpc)'
]
},
'cflags': [
'<!@(pkg-config --cflags grpc)'
],
'libraries': [
- '<!@(pkg-config --libs-only-L grpc)'
+ '<!@(pkg-config --libs-only-L --static grpc)'
]
}, {
'link_settings': {