From: Fedor Indutny Date: Sun, 17 Aug 2014 10:17:30 +0000 (+0400) Subject: gyp: preserve v8dbg syms on freebsd too X-Git-Tag: upstream/0.12.0~60 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9134a3bf413fe7e498e75ea3d6ad7d6f33040f68;p=platform%2Fupstream%2Fnodejs.git gyp: preserve v8dbg syms on freebsd too --- diff --git a/node.gyp b/node.gyp index c3b7660..5454af2 100644 --- a/node.gyp +++ b/node.gyp @@ -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', ],