summaryrefslogtreecommitdiff
path: root/deps/v8
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-02-14 14:31:00 -0800
committerisaacs <i@izs.me>2012-02-14 14:34:43 -0800
commitde21de920cf93ec40736ada3792a7f85f3eadeda (patch)
tree4353e2cc05f80e59a0bb0d7e002bb480d1f20f8e /deps/v8
parent0a4f5e84734d3cab0e3a082c733d4e96c3e3d496 (diff)
downloadnode-de21de920cf93ec40736ada3792a7f85f3eadeda.tar.gz
2012.02.14, Version 0.7.4 (unstable)v0.7.4
* Upgrade V8 to 3.9.5 * Upgrade npm to 1.1.1 * build: Detect host_arch better (Karl Skomski) * debugger: export `debug_port` to `process` (Fedor Indutny) * api docs: CSS bug fixes (isaacs) * build: use -fPIC for native addons on UNIX (Nathan Rajlich) * Re-add top-level v8::Locker (Marcel Laverdet) * Move images out of the dist tarballs (isaacs) * libuv: Remove uv_export and uv_import (Ben Noordhuis) * build: Support x64 build on Windows (Igor Zinkovsky)
Diffstat (limited to 'deps/v8')
-rw-r--r--deps/v8/SConstruct3
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct
index 6ce121c5c..d4eaebef8 100644
--- a/deps/v8/SConstruct
+++ b/deps/v8/SConstruct
@@ -293,6 +293,7 @@ V8_EXTRA_FLAGS = {
'gcc': {
'all': {
'WARNINGFLAGS': ['-Wall',
+ '-Werror',
'-W',
'-Wno-unused-parameter',
'-Wnon-virtual-dtor']
@@ -389,7 +390,7 @@ MKSNAPSHOT_EXTRA_FLAGS = {
DTOA_EXTRA_FLAGS = {
'gcc': {
'all': {
- 'WARNINGFLAGS': ['-Wno-uninitialized'],
+ 'WARNINGFLAGS': ['-Werror', '-Wno-uninitialized'],
'CCFLAGS': GCC_DTOA_EXTRA_CCFLAGS
}
},