Browse thread
simple example of using ocamlbuild with C
-
Ashish Agarwal
-
Matthieu Dubuget
- Axel_Poigné
- Ashish Agarwal
-
Matthieu Dubuget
[
Home
]
[ Index:
by date
|
by threads
]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
[ Message by date: previous | next ] [ Message in thread: previous | next ] [ Thread: previous | next ]
| Date: | -- (:) |
| From: | Ashish Agarwal <agarwal1975@g...> |
| Subject: | Re: [Caml-list] simple example of using ocamlbuild with C |
Thanks!
On Jan 10, 2008 3:05 AM, Matthieu Dubuget <matthieu.dubuget@gmail.com>
wrote:
> ---- myocamlbuild.ml ------
>
> open Ocamlopen Ocamlbuild_plugin
> open Command
> ;;
> dispatch begin function
> | After_rules ->
> flag ["link"; "ocaml"; "byte"] (A"-custom");
> dep ["link"; "ocaml"; "use_my_math"] ["avg.o"];
> | _ -> ()
> end
>
> ---- _tags ----- (do not forget the endline before end of file)
> <run.{native,byte}>: use_my_math
>
> ++++++++++++++++
>
> Works for me.
>
> Salutations
>
> P.S.
>
> I had to modify the beginning of
>
>
> ---- avg.c ---
> #include <stdio.h >
> #include <stdlib.h>
> #include <caml/mlvalues.h>
> #include <caml/memory.h>
>
> into
>
> ---- avg.c ---
>
> #include <caml/mlvalues.h>
> #include <caml/memory.h>
> #include <caml/alloc.h>
>