Skip to content

Commit

Permalink
build: fixups for sunos
Browse files Browse the repository at this point in the history
  • Loading branch information
bnoordhuis committed Sep 12, 2011
1 parent d7c16fa commit e4e1917
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion configure-gyp
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,10 @@ 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

# TODO move to node.gyp
if sys.platform == 'sunos5':
o['variables']['visibility'] = '' # FIXME -fvisibility=hidden, should be a gcc check


def configure_libz(o):
Expand Down

0 comments on commit e4e1917

Please sign in to comment.