diff options
author | Bert Belder <bertbelder@gmail.com> | 2011-01-18 03:57:14 +0100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-01-28 12:53:09 -0800 |
commit | 88947dc4f090ccf23ca297c7b692ab569f547928 (patch) | |
tree | b282b908e9bcb28f7d7f7518d80efd9752514e6c /deps/v8/SConstruct | |
parent | 7eaa956baee9070f8a073aa5c1bff01b1b8f2f5d (diff) | |
download | node-new-88947dc4f090ccf23ca297c7b692ab569f547928.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 bae1cd5e1d..c9993991d5 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. |