-
Notifications
You must be signed in to change notification settings - Fork 343
Development Tools
Yotam Barnoy edited this page Apr 6, 2014
·
7 revisions
ocamlfind
could be said to be a pkg-config
for OCaml. It is a tool for locating OCaml libraries on users' systems, so that users do not have to specify the location of each library themselves. ocamlfind
is commonly used by other, more complex build tools.
Some of the following is taken from http://ocaml.org/learn/tutorials/dev_tools.html#Compilationtools
The default way to build software on Unix platforms has long since been the GNU Make utility. This method, however, tends to be error-prone, and requires careful
OMake is a build system designed for scalability and portability. It uses a syntax similar to make utilities you may have used, but it features many additional enhancements.
See the guide.