diff options
author | Fedor Indutny <fedor@indutny.com> | 2014-08-18 17:58:36 +0400 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2014-08-18 17:58:36 +0400 |
commit | d1dd0d6b388a254468a0d3fa92b7a51847611a0f (patch) | |
tree | d9d2716b88d5e8807cd55b6adda0229c48de650c | |
parent | ffd0116eda9f48eacc1ce8772c5a85516871a2f9 (diff) | |
download | node-new-d1dd0d6b388a254468a0d3fa92b7a51847611a0f.tar.gz |
gyp: preserve v8dbg syms on freebsd too
-rw-r--r-- | node.gyp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -162,7 +162,7 @@ ], }, 'conditions': [ - ['OS=="linux"', { + ['OS in "linux freebsd"', { 'ldflags': [ '-Wl,--whole-archive <(PRODUCT_DIR)/libopenssl.a -Wl,--no-whole-archive', ], @@ -318,7 +318,7 @@ ], }], [ - 'OS=="linux" and node_shared_v8=="false"', { + 'OS in "linux freebsd" and node_shared_v8=="false"', { 'ldflags': [ '-Wl,--whole-archive <(V8_BASE) -Wl,--no-whole-archive', ], |