summaryrefslogtreecommitdiff
path: root/deps/v8/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/Makefile')
-rw-r--r--deps/v8/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/deps/v8/Makefile b/deps/v8/Makefile
index baa3b52ca6..28c1af2e07 100644
--- a/deps/v8/Makefile
+++ b/deps/v8/Makefile
@@ -143,6 +143,10 @@ endif
ifeq ($(deprecationwarnings), on)
GYPFLAGS += -Dv8_deprecation_warnings=1
endif
+# vectorstores=on
+ifeq ($(vectorstores), on)
+ GYPFLAGS += -Dv8_vector_stores=1
+endif
# imminentdeprecationwarnings=on
ifeq ($(imminentdeprecationwarnings), on)
GYPFLAGS += -Dv8_imminent_deprecation_warnings=1
@@ -240,7 +244,7 @@ endif
# Architectures and modes to be compiled. Consider these to be internal
# variables, don't override them (use the targets instead).
-ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64el x87 ppc ppc64
+ARCHES = ia32 x64 x32 arm arm64 mips mipsel mips64 mips64el x87 ppc ppc64
DEFAULT_ARCHES = ia32 x64 arm
MODES = release debug optdebug
DEFAULT_MODES = release debug