You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Edit src/Makefile.inc. Change the PREFIX path, e.g. /tmp/mosml-build.
After make install, try to execute $PREFIX/bin/mosml will generate the same error: "/usr/local/bin/camlrunm: not found".
Side-note:
I recommend use PREFIX?=/usr/include in the src/Makefile.inc so that the PREFIX value from the environment can override the value defined in the makefile. E.g. I can do something like this:
Hi, I have successfully built
mosml
aftergit clone
. But after installing with:if I try to execute
mosml
in that directory:it gives me an error saying that
camlrunm
is not found.I guess the path to
camlrunm
is hard-coded intomosml
becausecamlrunm
is installed to the same directory$DESTDIR/usr/local/bin/
asmosml
.The text was updated successfully, but these errors were encountered: