toplevel

View: New views
2 Messages — Rating Filter:   Alert me  

toplevel

by Jean Krivine :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Hello

I am trying to make a toplevel including differnent cmo
(OBJS=./dir1/obj1.cmo ./dir2/obj2.cmo ...) contained in different
directories
(OCAMLINCLUDES= -I ./dir1 -I ./dir2 ...).
If I type make toplevel (see excerpt of my makefile below) I obtain a
toplevel that does what I want (I can load all my modules from it).
But when I try to make a toplevel (by doing make toplx) using
ocamlmktop, the toplevel I obtain doesn't know my modules...
Can anyone help me?

toplevel: $(MLI) $(CMI) $(OBJS)
        ocaml $(OCAMLINCLUDES) unix.cma nums.cma $(OBJS)

toplx: $(MLI) $(CMI) $(OBJS)
        ocamlmktop -o toplx $(OCAMLINCLUDES) -cclib -lunix -cclib -lnums
unix.cma nums.cma $(OBJS)

Thanks you!

J

_______________________________________________
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

Re: toplevel

by Alain Frisch-2 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Jean Krivine wrote:

> Hello
>
> I am trying to make a toplevel including differnent cmo
> (OBJS=./dir1/obj1.cmo ./dir2/obj2.cmo ...) contained in different
> directories
> (OCAMLINCLUDES= -I ./dir1 -I ./dir2 ...).
> If I type make toplevel (see excerpt of my makefile below) I obtain a
> toplevel that does what I want (I can load all my modules from it).
> But when I try to make a toplevel (by doing make toplx) using
> ocamlmktop, the toplevel I obtain doesn't know my modules...
> Can anyone help me?

Your modules are probably linked in the toplevel but you must still pass
the -I flags to the toplevel to make the .cmi files visible. I believe
the only way to embed some builtin -I flags in a toplevel is to link in
a module that talks to the toplevel.

-- Alain

_______________________________________________
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