From d1dd0d6b388a254468a0d3fa92b7a51847611a0f Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Mon, 18 Aug 2014 17:58:36 +0400 Subject: [PATCH] gyp: preserve v8dbg syms on freebsd too --- node.gyp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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', ], -- 2.7.4