summaryrefslogtreecommitdiff
path: root/scripts/test/shared.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/test/shared.py')
-rw-r--r--scripts/test/shared.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py
index 2c18a053c..eac4bd99d 100644
--- a/scripts/test/shared.py
+++ b/scripts/test/shared.py
@@ -201,7 +201,10 @@ NATIVEXX = (os.environ.get('CXX') or which('mingw32-g++') or
which('g++') or which('clang++'))
NODEJS = os.getenv('NODE', which('node') or which('nodejs'))
MOZJS = which('mozjs') or which('spidermonkey')
-V8 = which('v8') or which('d8')
+
+# TODO: Remove the specific v8 version once we implement structref and can run
+# on recent v8.
+V8 = which('v8-10.8.104') or which('v8') or which('d8')
BINARYEN_INSTALL_DIR = os.path.dirname(options.binaryen_bin)
WASM_OPT = [os.path.join(options.binaryen_bin, 'wasm-opt')]