diff options
author | isaacs <i@izs.me> | 2012-02-14 14:31:00 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2012-02-14 14:34:43 -0800 |
commit | de21de920cf93ec40736ada3792a7f85f3eadeda (patch) | |
tree | 4353e2cc05f80e59a0bb0d7e002bb480d1f20f8e /deps/v8/SConstruct | |
parent | 0a4f5e84734d3cab0e3a082c733d4e96c3e3d496 (diff) | |
download | node-new-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/SConstruct')
-rw-r--r-- | deps/v8/SConstruct | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct index 6ce121c5c1..d4eaebef8d 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 } }, |