File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -602,7 +602,10 @@ def check_human_readable_list(items):
602
602
603
603
def make_js_executable (script ):
604
604
src = read_file (script )
605
- cmd = shared .shlex_join (config .JS_ENGINE )
605
+ cmd = config .JS_ENGINE
606
+ if settings .WASM_BIGINT :
607
+ cmd .append ('--experimental-wasm-bigint' )
608
+ cmd = shared .shlex_join (cmd )
606
609
if not os .path .isabs (config .JS_ENGINE [0 ]):
607
610
# TODO: use whereis etc. And how about non-*NIX?
608
611
cmd = '/usr/bin/env -S ' + cmd
Original file line number Diff line number Diff line change @@ -6776,9 +6776,9 @@ def test_bullet(self, use_cmake):
6776
6776
libraries = self .get_bullet_library (use_cmake ),
6777
6777
includes = [test_file ('third_party/bullet/src' )])
6778
6778
6779
- @unittest .skip ('LLVM changes have caused this C++ to no longer compile, https://github.com/emscripten-core/emscripten/issues/14614' )
6780
6779
@no_asan ('issues with freetype itself' )
6781
6780
@needs_make ('depends on freetype' )
6781
+ @no_wasm64 ('MEMORY64 does not yet support SJLJ' )
6782
6782
@is_slow_test
6783
6783
def test_poppler (self ):
6784
6784
pdf_data = read_binary (test_file ('poppler/paper.pdf' ))
You can’t perform that action at this time.
0 commit comments