diff options
author | Bert Belder <bertbelder@gmail.com> | 2011-02-10 04:02:59 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-02-09 19:13:31 -0800 |
commit | fd013d17a21bbf7675d3bef59b2a76a58cb311f5 (patch) | |
tree | f7121f69a5f7716e38971753f4b693f159a7ec04 /deps/v8/SConstruct | |
parent | 67e352e4b1ad11c674c3e79a4a6e1d9bb159fcc6 (diff) | |
download | node-new-fd013d17a21bbf7675d3bef59b2a76a58cb311f5.tar.gz |
V8 cygwin support
Diffstat (limited to 'deps/v8/SConstruct')
-rw-r--r-- | deps/v8/SConstruct | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct index c9993991d5..b2542fd011 100644 --- a/deps/v8/SConstruct +++ b/deps/v8/SConstruct @@ -188,6 +188,9 @@ LIBRARY_FLAGS = { 'LIBPATH' : ['/usr/local/lib'], 'CCFLAGS': ['-ansi'], }, + 'os:cygwin': { + 'WARNINGFLAGS': ['-Werror'], + }, 'os:win32': { 'CCFLAGS': ['-DWIN32'], 'CXXFLAGS': ['-DWIN32'], @@ -691,7 +694,7 @@ SIMPLE_OPTIONS = { 'help': 'the toolchain to use (%s)' % TOOLCHAIN_GUESS }, 'os': { - 'values': ['freebsd', 'linux', 'macos', 'win32', 'android', 'openbsd', 'solaris'], + 'values': ['freebsd', 'linux', 'macos', 'win32', 'android', 'openbsd', 'solaris', 'cygwin'], 'default': OS_GUESS, 'help': 'the os to build for (%s)' % OS_GUESS }, |