diff options
author | Bert Belder <bertbelder@gmail.com> | 2011-01-18 03:57:14 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-02-09 14:53:15 -0800 |
commit | 35e32225d122b063713dead992068d38b687ad04 (patch) | |
tree | 06ee5dda96039672c2bc95da5a1ad735f034789a /deps/v8/SConstruct | |
parent | 81b4d4535472533e9e3919f5460ab2b0967ea4b1 (diff) | |
download | node-35e32225d122b063713dead992068d38b687ad04.tar.gz |
Workaround for V8 bug 884
See http://code.google.com/p/v8/issues/detail?id=884
Diffstat (limited to 'deps/v8/SConstruct')
-rw-r--r-- | deps/v8/SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct index bae1cd5e1..c9993991d 100644 --- a/deps/v8/SConstruct +++ b/deps/v8/SConstruct @@ -136,7 +136,7 @@ LIBRARY_FLAGS = { 'gcc': { 'all': { 'CCFLAGS': ['$DIALECTFLAGS', '$WARNINGFLAGS'], - 'CXXFLAGS': ['$CCFLAGS', '-fno-rtti', '-fno-exceptions'], + 'CXXFLAGS': ['$CCFLAGS', '-fno-rtti', '-fno-exceptions', '-fno-builtin-memcpy'], }, 'visibility:hidden': { # Use visibility=default to disable this. |