diff options
author | Derek Schuff <dschuff@chromium.org> | 2023-02-02 14:12:56 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-02 14:12:56 -0800 |
commit | 6a2ec34a24f0dba63b851e800cc88653c1c74c9b (patch) | |
tree | 5878cee9672b23821e0b7742b8eea5d304dae1a6 /scripts | |
parent | d3f2df39c9e55ec25e4a2ac59804d6137679272d (diff) | |
download | binaryen-6a2ec34a24f0dba63b851e800cc88653c1c74c9b.tar.gz binaryen-6a2ec34a24f0dba63b851e800cc88653c1c74c9b.tar.bz2 binaryen-6a2ec34a24f0dba63b851e800cc88653c1c74c9b.zip |
Add a CMake flag to enable Wasm exceptions in the BinaryenJS build (#5454)
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/test/binaryenjs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/binaryenjs.py b/scripts/test/binaryenjs.py index 93fbe532f..d546ced13 100644 --- a/scripts/test/binaryenjs.py +++ b/scripts/test/binaryenjs.py @@ -60,7 +60,7 @@ def do_test_binaryen_js_with(which): test([shared.MOZJS, '-m', 'a.mjs']) if shared.NODEJS: if node_has_wasm or 'WebAssembly.' not in test_src: - test([shared.NODEJS, 'a.mjs']) + test([shared.NODEJS, '--experimental-wasm-eh', 'a.mjs']) else: print('Skipping ' + test_path + ' because WebAssembly might not be supported') |