diff options
author | Fedor Indutny <fedor@indutny.com> | 2014-08-17 14:17:30 +0400 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2014-08-17 14:17:30 +0400 |
commit | 9134a3bf413fe7e498e75ea3d6ad7d6f33040f68 (patch) | |
tree | 52f9b7397310f5be40c924ac31cb38d4c0cd8e25 /node.gyp | |
parent | 0d357fa135dedaae644d73b0b9a907b90c66f200 (diff) | |
download | node-9134a3bf413fe7e498e75ea3d6ad7d6f33040f68.tar.gz |
gyp: preserve v8dbg syms on freebsd too
Diffstat (limited to 'node.gyp')
-rw-r--r-- | node.gyp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -191,7 +191,7 @@ ], }, 'conditions': [ - ['OS=="linux"', { + ['OS in "linux freebsd"', { 'ldflags': [ '-Wl,--whole-archive <(PRODUCT_DIR)/libopenssl.a -Wl,--no-whole-archive', ], @@ -351,7 +351,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', ], |