-
Notifications
You must be signed in to change notification settings - Fork 28
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
Bytecode-only build does not work: build system tries to use missing ocamlopt
and freezes
#39
Comments
If I apply the patch to cut out everything related to
|
I just got this error as well, it doesn't work as @barracuda156 points out. A fix is needed. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is the same issue which was present in 1.4, and despite a PR #30 intending to fix it, it is still broken in 1.5, unfortunately.
This is what happens on
ppc
(where only bytecode is available):Notice what the build system tries:
In result the build just freezes and I have to interrupt the process. Libraries are in fact successfully built, but forcing
ocamlopt
call prevents it from completion.@dra27 Could you please take a look? It should be pretty trivial to fix in the master: we just need it to check if
ocamlopt
is de facto available, or at least offer a configure option to switch off native code generation, if reliable detection during the build is problematic for some reason.The text was updated successfully, but these errors were encountered: