diff options
author | Bert Belder <bertbelder@gmail.com> | 2011-01-18 03:57:14 +0100 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2011-01-18 04:49:42 +0100 |
commit | b70f8aec8482a25471f2550ef97b4666815a55c8 (patch) | |
tree | 158e8c5aed08bdf188421d0973c0bc8ce3b2b2ea /deps/v8/SConstruct | |
parent | 86bf3309bf21231c6a248ad7753519a0ae22361f (diff) | |
download | node-new-b70f8aec8482a25471f2550ef97b4666815a55c8.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 3121ec5f90..e10f8117c3 100644 --- a/deps/v8/SConstruct +++ b/deps/v8/SConstruct @@ -129,7 +129,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. |