From d05081a93ff8e2b201aa6a6760942dd1ad0c7b18 Mon Sep 17 00:00:00 2001
From: Peter Marshall
Date: Thu, 14 Sep 2017 12:51:54 +0200
Subject: [PATCH] [HACK] Add compiler option for typed array threshold
---
configure | 1 +
1 file changed, 1 insertion(+)
diff --git a/configure b/configure
index 4e3455056c..7fbabdbb26 100755
--- a/configure
+++ b/configure
@@ -1001,6 +1001,7 @@ def configure_v8(o):
o['variables']['node_use_bundled_v8'] = b(not options.without_bundled_v8)
o['variables']['force_dynamic_crt'] = 1 if options.shared else 0
o['variables']['node_enable_d8'] = b(options.enable_d8)
+ o['variables']['v8_typed_array_max_size_in_heap'] = 0
if options.enable_d8:
o['variables']['test_isolation_mode'] = 'noop' # Needed by d8.gyp.
if options.without_bundled_v8 and options.enable_d8: