Closed yviansu closed 2 years ago
Binaryen supports stringref (with --enable-strings
); you can use that to convert .wast text to .wasm binary.
V8 supports stringref (with --experimental-wasm-stringref
); you can use that to execute .wasm binaries.
AFAIK the reference interpreter has not been updated yet.
Got it! Thanks for your reply!
I have written a wast file according to the stringref spec.
However, when I run the wast file through the interpreter provided in the repo, it throws an error
../tests/stringref.wast:5.41-5.50: syntax error: unknown operator stringref
, it seems that this interpreter does not supportstringref
.Is there any other interpreter which support
stringref
?