From 2dd68af33483d1deb079fa8c0a8b185e3aa423f4 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 3 Nov 2011 10:46:16 -0700 Subject: [PATCH] Remove -Werror from V8 build --- deps/v8/SConstruct | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct index f9c33caae5..1dcdce4a8c 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 } },