On 04/26/2012 10:58 AM, Xavier ALLAMIGEON wrote:
> Dear caml-list,
> 
> I'd like to build a static C library implementing an interface to an OCaml 
> library, but I get some compilation errors. Here's an example of the problem.
> 
> 1) The ml_code.* files contain a hello_world function which I'd like to 
> provide in C.
> 
> <ml_code.ml>
> let ml_hello_world () =
>   print_endline "Hello world!"
> 
> let _ =
>   Callback.register "ml_hello_world" ml_hello_world
> 
> <ml_code.mli>
> val ml_hello_world: unit -> unit
> 
> 2) On the C part, I created .c/.h files calling the ml function with camlback:
> <c_code.c>
> #include <caml/callback.h>
> #include <caml/memory.h>
> 
> void init(void) {
>   char* dummy = '\0';
>   caml_main(&dummy);
> }
> 
> void c_hello_world(void) {
>   CAMLparam0();
>   static value *closure_ml_hello_world = NULL;
>   if (closure_ml_hello_world == NULL) {
>     closure_ml_hello_world = caml_named_value("ml_hello_world");
>   }
>   caml_callback(*closure_ml_hello_world, Val_unit);
>   CAMLreturn0;
> }
> 
> <c_code.h>
> void init(void);
> void c_hello_world(void);
> 
> 3) Finally, I created a test file in C:
> <test.c>
> #include "c_code.h"
> 
> int main(int argc, char **argv) {
>   init();
>   c_hello_world();
> }
> 
> Here's the way I'm compiling everything. It builds a libhello_world.a static 
> library from ml_code.obj.o and c_code.o.
> ocamlc -c ml_code.mli
> ocamlopt -c ml_code.ml
> ocamlopt -output-obj ml_code.cmx -o ml_code.obj.o
> gcc -c c_code.c -I"`ocamlc -where`"
> ar rcs libhello_world.a ml_code.obj.o c_code.o
> gcc -o test -L. -L"`ocamlc -where`" test.c -lhello_world -lasmrun -lm -ldl

You need -Wl,--whole-archive -Wl,--no-whole-archive around the link of your .a, 
like this:
gcc -o test -L. -L"`ocamlc -where`" test.c -Wl,--whole-archive -lhello_world 
-Wl,--no-whole-archive -lasmrun -lm -ldl

Otherwise the functions from your .a are dropped because nothing else before it 
needs it (-lasmrun would, but its after your .a).


Best regards,
--Edwin

-- 
Caml-list mailing list.  Subscription management and archives:
https://sympa-roc.inria.fr/wws/info/caml-list
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
Bug reports: http://caml.inria.fr/bin/caml-bugs

Reply via email to