Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: 18.x
- run: cd interpreter && opam exec make all
- run: cd interpreter && opam exec make JS=node all

ref-interpreter-js-library:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion interpreter/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ FLAGS = -lexflags -ml -cflags '-w +a-4-27-42-44-45-70 -warn-error +a-3'
OCBA = ocamlbuild $(FLAGS) $(DIRS:%=-I %)
OCB = $(OCBA) $(LIBS:%=-libs %)
JSO = js_of_ocaml -q --opt 3
JS = node # set to JS shell command to run JS tests, empty to skip
JS = # set to JS shell command to run JS tests, empty to skip


# Main targets
Expand Down
10 changes: 10 additions & 0 deletions test/core/linking.wast
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,16 @@
)


(module
(global (export "g-v128") v128 (v128.const i64x2 0 0))
)
(register "Mv128")

(module
(import "Mv128" "g-v128" (global v128))
)


;; Tables

(module $Mt
Expand Down