I’m experiencing similar issues to that of this post while building my dune project that depends on the angstrom library.
node ./_build/default/bin/main.bc.wasm.js
/home/dan/Enzo/ZillyO/_build/default/bin/main.bc.wasm.js:450
throw: e=>{throw e;},
^
Error: bigstringaf_blit_from_bytes not implemented
Nevertheless, the post don’t seem to say what was the issue or how it was fixed. I’m pretty new to ocaml, so I’m not sure if the answer was just that simple.
This is my dune file for the bin:
(executable
(name main)
(libraries
js_of_ocaml
bigstringaf
ZillyO)
(modes wasm))
(install
(section bin)
(files (main.bc.wasm.js as ZillyO)))
I also list bigstringaf
as a dependency in my dune-project
file:
(depends ocaml angstrom bigstringaf)
Anybody knows a workaround this?
11 posts - 5 participants