Hi, I would like to create *.cmt and *.cmti files with ocamlmklib command.
I know that ocamlc can create *.cmt and *.cmti files with the -bin-annot tag but what about ocamlmklib?
Thanks, everyone!
Horn
As far as I understand, ocamlmklib
is used to build OCaml libraries (.cma
and .cmxa
) and C libraries (.a
and .so
), so am not sure in what sense you could use it to build .cmt
and .cmti
files which are associated with the compilation of OCaml modules.
Cheers,
Nicolás
Ah thanks, I somewhat understand now.