summaryrefslogtreecommitdiff
path: root/deps/v8/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/SConstruct')
-rw-r--r--deps/v8/SConstruct6
1 files changed, 3 insertions, 3 deletions
diff --git a/deps/v8/SConstruct b/deps/v8/SConstruct
index a89292629..3b14eea27 100644
--- a/deps/v8/SConstruct
+++ b/deps/v8/SConstruct
@@ -44,10 +44,10 @@ if ANDROID_TOP is None:
ANDROID_TOP=""
# TODO: Sort these issues out properly but as a temporary solution for gcc 4.4
-# on linux we need these compiler flags to avoid a mksnapshot segfault, avoid
-# crashes in the v8 test suite and avoid dtoa.c strict aliasing issues
+# on linux we need these compiler flags to avoid crashes in the v8 test suite
+# and avoid dtoa.c strict aliasing issues
if os.environ.get('GCC_VERSION') == '44':
- GCC_EXTRA_CCFLAGS = ['-fno-tree-vectorize', '-fno-tree-vrp']
+ GCC_EXTRA_CCFLAGS = ['-fno-tree-vrp']
GCC_DTOA_EXTRA_CCFLAGS = ['-fno-strict-aliasing']
else:
GCC_EXTRA_CCFLAGS = []