I have two different ml-targets, which should be compiled to native code. Both targets are sharing some modules.

The problem is, if I run "ocamlbuild targetA" the modules C, D and E are compiled to object code. But when I run than "ocamlbuild targetB" the modules D and E will be recompiled again.

How could I force that the recompilation of modules D and E (which are shared by targetA and targetB) will be avoided?

I am using ocamlbuild 3.11.2.

Any hints?

Bye Andreas

link|improve this question

feedback

1 Answer

Would using a single invocation of ocamlbuild work for you? That is, run "ocamlbuild targetA targetB" or use an .itarget.

link|improve this answer
1  
support for itarget seems to be buggy and is reported to ocamlbuild maintainer. I must rethink your other suggestions, because would be hard to use it in makefile. I will test it soon. – Andreas Romeyke Aug 24 '11 at 7:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.