Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss
Groups keyboard shortcuts have been updated
Dismiss
See shortcuts

[Caml-list] documentation for building C++ libraries with ocamlbuild

87 views
Skip to first unread message

Christian Sternagel

unread,
Mar 24, 2007, 2:59:34 PM3/24/07
to caml...@inria.fr
Is there some documentation or at least a tutorial for how to setup ocamlbuild in order to build a lib<name>.a file from a bunch of *.c, *.C, and *.h files?

And after having done that, how to tell ocamlbuild that some ocmal-program which is build depends on lib<name>.a.

Currently I build lib<name>.a using a Makefile and the g++ compiler. After that I create a <name>.cma like

ocamlc -cc g++ -ccopt -L<name> -a -o <name>.cma -custom \
<some *.cmo files> -cclib -l<name>

Then I compile the program using the ocaml-interfaced C++ library like

ocamlc -cc g++ -o <progname> -ccopt -L<path to lib<name>.a> \
-cclib -l<name> <name>.cma <some *.cmo files>

For each of the 3 steps I need a different Makefile and almost always when something changes I have to do the cumbersome
make clean; make depend; make cycle to avoid any compile errors
like inconsistent assumptions over interfaces. There should be an easier way, shouldn't it?

cheers

christian

_______________________________________________
Caml-list mailing list. Subscription management:
http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
Archives: http://caml.inria.fr
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs

Nicolas Pouillard

unread,
Mar 25, 2007, 6:14:40 AM3/25/07
to Christian Sternagel
On 3/24/07, Christian Sternagel <christian...@uibk.ac.at> wrote:
> Is there some documentation or at least a tutorial for how to setup ocamlbuild in order to build a lib<name>.a file from a bunch of *.c, *.C, and *.h files?

$ cat libfoo.clib
foo1.o
bar2.o
..

$ ocamlbuild libfoo.a

> And after having done that, how to tell ocamlbuild that some ocmal-program which is build depends on lib<name>.a.

$ cat _tags
<myocamprog.{byte,native}: use_foo

$ cat myocamlbuild.ml
open Ocamlbuild_plugin;;
open Command;;
dispatch begin function
| After_rules ->
flag ["ocaml"; "link"; "use_foo"]
(SA"-cc"; A"g++"; A"-ccopt"; A"-Lfoo"; A"-custom"; A"-cclib"; A"-Ifoo"


>
> Currently I build lib<name>.a using a Makefile and the g++ compiler. After that I create a <name>.cma like
>
> ocamlc -cc g++ -ccopt -L<name> -a -o <name>.cma -custom \
> <some *.cmo files> -cclib -l<name>
>
> Then I compile the program using the ocaml-interfaced C++ library like
>
> ocamlc -cc g++ -o <progname> -ccopt -L<path to lib<name>.a> \
> -cclib -l<name> <name>.cma <some *.cmo files>
>
> For each of the 3 steps I need a different Makefile and almost always when something changes I have to do the cumbersome
> make clean; make depend; make cycle to avoid any compile errors
> like inconsistent assumptions over interfaces. There should be an easier way, shouldn't it?
>
> cheers
>
> christian
>
> _______________________________________________
> Caml-list mailing list. Subscription management:
> http://yquem.inria.fr/cgi-bin/mailman/listinfo/caml-list
> Archives: http://caml.inria.fr
> Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
> Bug reports: http://caml.inria.fr/bin/caml-bugs
>


--
Nicolas Pouillard aka Ertai <er...@feydakins.org>
http://uttk.org Uttk -- Unified Test Tool Kit

Nicolas Pouillard

unread,
Mar 25, 2007, 6:19:40 AM3/25/07
to Christian Sternagel
Sorry, my first mail is unfinished...

On 3/24/07, Christian Sternagel <christian...@uibk.ac.at> wrote:

> Is there some documentation or at least a tutorial for how to setup ocamlbuild in order to build a lib<name>.a file from a bunch of *.c, *.C, and *.h files?

Roughly...

$ cat libfoo.clib
foo1.o
bar2.o
..

$ ocamlbuild libfoo.a

> And after having done that, how to tell ocamlbuild that some ocmal-program which is build depends on lib<name>.a.

$ cat _tags
<myocamprog.{byte,native}: use_foo

$ cat myocamlbuild.ml
open Ocamlbuild_plugin;;
open Command;;
dispatch begin function
| After_rules ->
flag ["ocaml"; "link"; "use_foo"]

(S[A"-cc"; A"g++"; A"-ccopt"; A"-Lfoo"; A"-custom";
A"-cclib"; A"-Ifoo"]);
dep ["ocaml"; "link"; "use_foo") ["libfoo.a"]
end;;

Some `flag' declaration might be useful in order to tweak the C/C++ compilation.

--
Nicolas Pouillard

0 new messages