Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-02-03 03:37:59 +0400
committerisaacs <i@izs.me>2012-03-02 23:26:05 +0400
commit2d6a076ab32b20447f7f173eb8b15bf15539932e (patch)
treeb75dad424cb1ba4f76e604c74457fa4cf0a82243 /deps
parentc0c4e008aa051baadcc274d792f4a8f5c6b130b8 (diff)
Patches floating on v8
Diffstat (limited to 'deps')
-rw-r--r--deps/v8/SConstruct3
-rw-r--r--deps/v8/tools/gyp/v8.gyp7
2 files changed, 8 insertions, 2 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct
index f9c33caae5d..1dcdce4a8ce 100644
--- a/deps/v8/SConstruct
+++ b/deps/v8/SConstruct
@@ -288,7 +288,6 @@ V8_EXTRA_FLAGS = {
'gcc': {
'all': {
'WARNINGFLAGS': ['-Wall',
- '-Werror',
'-W',
'-Wno-unused-parameter',
'-Wnon-virtual-dtor']
@@ -382,7 +381,7 @@ MKSNAPSHOT_EXTRA_FLAGS = {
DTOA_EXTRA_FLAGS = {
'gcc': {
'all': {
- 'WARNINGFLAGS': ['-Werror', '-Wno-uninitialized'],
+ 'WARNINGFLAGS': ['-Wno-uninitialized'],
'CCFLAGS': GCC_DTOA_EXTRA_CCFLAGS
}
},
diff --git a/deps/v8/tools/gyp/v8.gyp b/deps/v8/tools/gyp/v8.gyp
index 50144172a04..92d1e5c96a6 100644
--- a/deps/v8/tools/gyp/v8.gyp
+++ b/deps/v8/tools/gyp/v8.gyp
@@ -641,6 +641,13 @@
],
}
],
+ ['OS=="solaris"', {
+ 'sources': [
+ '../../src/platform-solaris.cc',
+ '../../src/platform-posix.cc'
+ ],
+ }
+ ],
['OS=="mac"', {
'sources': [
'../../src/platform-macos.cc',