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
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-02-03 03:37:59 +0400
committerisaacs <i@izs.me>2012-02-03 03:38:28 +0400
commit71527e3a55b4a0ce895e62f74d5407317336d64b (patch)
tree754f80b9bdda67592b2125c8115b3b598e930a02
parent465f57c56f9b915d9c8b4f5549457f3e7276ee06 (diff)
Patches floating on v8
-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',