-
Notifications
You must be signed in to change notification settings - Fork 20
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
Static binaries for the engine #696
Comments
Here is a small report on trying to produce distributable binaries for the hax-engine. OCaml static binariesAfter reading https://ocamlpro.com/blog/2021_09_02_generating_static_and_portable_executables_with_ocaml/, I tried this approach but got some issues on linux. Js_of_ocamlEnded up being either too slow or crashing because of stack overflow. There is no tail call optimization on node, I tried with I also had a issue about caml performances working on strings: parsing JSON was extremely slow, so I had to use JS's own This solution works for running hax on small crates but performance is really really limiting.
|
With #734 merged we should be good to go here? |
Yes, indeed! We should make a release and finish the small bit that downloads the engine from GH! |
Shall I just increment the version in |
Yeah, just make it a |
I (@W95Psp) investiguated that:
Other solutions:
nix bundle
)The text was updated successfully, but these errors were encountered: