| Index: SConstruct
|
| diff --git a/SConstruct b/SConstruct
|
| index d54c29b74982abd7a7eb7c11ebcacc88573d6680..f7638e0b2ae5a15737c5715ffc88eb89b34dd4cd 100644
|
| --- a/SConstruct
|
| +++ b/SConstruct
|
| @@ -46,8 +46,8 @@ if ANDROID_TOP is None:
|
| # 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-vrp']
|
| - GCC_DTOA_EXTRA_CCFLAGS = ['-fno-strict-aliasing']
|
| + GCC_EXTRA_CCFLAGS = ['-fno-tree-vrp', '-fno-strict-aliasing']
|
| + GCC_DTOA_EXTRA_CCFLAGS = []
|
| else:
|
| GCC_EXTRA_CCFLAGS = []
|
| GCC_DTOA_EXTRA_CCFLAGS = []
|
|
|