I'm having a problem while using OcaIDE in ocamlbuild mode. I'm trying to compile my own JoCaml sources. According to the JoCaml manual (bottom of page), to use ocamlbuild with JoCaml, I just need to add the -use-jocaml argument to ocamlbuild. Indeed, if I go to the root of my project and write
ocamlbuild -use-jocaml foo.native
it generates my executable just fine.
However, in OcaIDE I get
/bin/sh: jocamldep: command not found
In OcaIDE, the -use-jocaml flag is passed in the "Other Flags" box (in Project Properties). And that certainly is working, as the complaint is precisely that it doesn't find jocaml stuff. The puzzling thing is that jocaml is installed and can be accessed from any random terminal window. For example, running
jocamldep -modules foo.ml > foo.ml.depends
on my project does generate the desired dependency file.
So, it would seem I would have to configure OcaIDE and tell it where JoCaml executables are or something. This is done for OCaml, for example. But there is no place to do that for JoCaml. And it's really strange that, if jocamldep/jocamlc/etc are all accessible from anywhere, OcaIDE wouldn't be able to pick them.
Any ideas?
(I am aware I can do an ocamlbuild plugin and pass the flag in a "myocamlbuild.ml" file. I'll probably use that a latter stage after I get familiar with ocamlbuild plugins. But here the question is about OcaIDE. EDIT: Actually, ocamlbuild plugins don't seem to be a solution as, although there is an option -use-jocaml in ocamlbuild to enforce jocaml use (and it works fine), the plugin system doesn't support it, i.e. use_jocaml (or something involving jocaml) is not in the list of options.)
$PATH, or more precisely the$PATHin OcaIDE. – Gilles Mar 15 '11 at 21:29jocamldep. If that doesn't work, but invokingjocamldepfrom your shell prompt works, the most likely explanation is that either OcaIDE or you has changed thePATHenvironment variable. What directory isjocamldepin? Can you confirm that OcaIDE (or perhaps Eclipse in general) has this directory in itsPATH? – Gilles Mar 15 '11 at 22:47type jocamldepshow (typed in a terminal)? And if it's something other than/usr/bin/jocamldepor/usr/local/bin/jocamldep, how did you add that directory to yourPATH? – Gilles Mar 16 '11 at 0:10