-
Notifications
You must be signed in to change notification settings - Fork 452
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to build interpreter (missing files or compiler flags?) #1479
Comments
The Wasm Makefile sets warnings to errors. But OCaml recently added additional warnings, which the code runs into. To fix this, you'll have to tweak the Makefile. I believe the following change to line 22 should do the trick:
(Please let me know if this works. I don't have OCaml 4.13 installed, so cannot test it right now.) |
It works, thanks. It seems like it's safe to make this change in the repo as with the flag I can build the interpreter with OCaml 4.08.0 too. |
Closed via #1481. |
Interpreter README says simply run
make
to build the interpreter, butmake
(andmake all
,make opt
etc.) fails with:OCaml version:
The text was updated successfully, but these errors were encountered: