From d7c16fa37275c0799582f95b6959e13a8884762e Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Tue, 30 Aug 2011 23:57:03 +0000 Subject: [PATCH] build: disable -fvisibility=hidden Not recognized by older versions of gcc. --- configure-gyp | 1 + 1 file changed, 1 insertion(+) diff --git a/configure-gyp b/configure-gyp index edd21b16acea..f1d8a46cabbf 100755 --- a/configure-gyp +++ b/configure-gyp @@ -150,6 +150,7 @@ def configure_node(o): o['variables']['node_use_dtrace'] = 'true' if options.with_dtrace else 'false' o['variables']['host_arch'] = host_arch() o['variables']['target_arch'] = target_arch() + o['variables']['visibility'] = '' # -fvisibility=hidden doesn't work with older gccs def configure_libz(o):