From d2ab314e08903fafcd61f77fa6e41e15d200c94b Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Fri, 7 Oct 2011 01:08:53 -0700 Subject: [PATCH] Turn off V8's -Werror in GYP --- node.gyp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/node.gyp b/node.gyp index 84ac540d63..b15d4f1a5a 100644 --- a/node.gyp +++ b/node.gyp @@ -1,6 +1,9 @@ { 'variables': { 'v8_use_snapshot': 'true', + # Turn off -Werror in V8 + # See http://codereview.chromium.org/8159015 + 'werror': '', 'target_arch': 'ia32', 'node_use_dtrace': 'false', 'node_use_openssl%': 'true',