From: Fedor Indutny Date: Mon, 18 Aug 2014 13:58:36 +0000 (+0400) Subject: gyp: preserve v8dbg syms on freebsd too X-Git-Tag: v0.10.31~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d1dd0d6b388a254468a0d3fa92b7a51847611a0f;p=platform%2Fupstream%2Fnodejs.git gyp: preserve v8dbg syms on freebsd too --- diff --git a/node.gyp b/node.gyp index 33c4f0e..fbf0292 100644 --- a/node.gyp +++ b/node.gyp @@ -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', ],