diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-01-17 11:32:56 -0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-01-17 11:32:56 -0800 |
commit | cf2e4f44afbfb208c5976786c96ec963930323cc (patch) | |
tree | 7e9ddac16d51490f1428abb610afd02eda98aacf /deps/v8/SConstruct | |
parent | 082a4b6033df22a68518c58d320e86f688db7bda (diff) | |
download | node-new-cf2e4f44afbfb208c5976786c96ec963930323cc.tar.gz |
Upgrade V8 to 3.0.8
Diffstat (limited to 'deps/v8/SConstruct')
-rw-r--r-- | deps/v8/SConstruct | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct index 5908be1525..3121ec5f90 100644 --- a/deps/v8/SConstruct +++ b/deps/v8/SConstruct @@ -662,6 +662,8 @@ def GuessVisibility(os, toolchain): if os == 'win32' and toolchain == 'gcc': # MinGW can't do it. return 'default' + elif os == 'solaris': + return 'default' else: return 'hidden' @@ -679,7 +681,7 @@ SIMPLE_OPTIONS = { 'help': 'the toolchain to use (%s)' % TOOLCHAIN_GUESS }, 'os': { - 'values': ['freebsd', 'linux', 'macos', 'win32', 'android', 'openbsd', 'solaris', 'cygwin'], + 'values': ['freebsd', 'linux', 'macos', 'win32', 'android', 'openbsd', 'solaris'], 'default': OS_GUESS, 'help': 'the os to build for (%s)' % OS_GUESS }, |