Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

[Caml-list] GTK

1 view
Skip to first unread message

N.P.S...@westminster.ac.uk

unread,
Jul 19, 2005, 11:30:20 AM7/19/05
to caml...@yquem.inria.fr

Hello there,

I try to compile my first GTK+2 code "base.ml" taken from the GTK Ocaml tutorial
from

-------------
(* file: base.ml *)

let main () =
let window = GWindow.window () in
window#show ();
GMain.Main.main ()

let _ = main ()
-------------------
You can compile the above program with ocamlc using:

ocamlc -I +lablgtk2 -o base lablgtk.cma gtkInit.cmo base.ml


HOWEVER when I do that i get the following error message

File "base.ml", line 4, characters 15-29:
Unbound value GWindow.window

anyone got any idea what it is ?
thanks

_______________________________________________
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

SooHyoung Oh

unread,
Jul 19, 2005, 11:44:20 AM7/19/05
to N.P.S...@westminster.ac.uk, caml...@yquem.inria.fr

It seems that you don't have lablgtk2 installed.
Please check whether $(OCAMLLIB)/lablgtk2 exists or not.

Jean-Christophe Filliatre

unread,
Jul 20, 2005, 3:25:51 AM7/20/05
to N.P.S...@westminster.ac.uk, caml...@yquem.inria.fr

N.P.S...@westminster.ac.uk writes:
>
> I try to compile my first GTK+2 code "base.ml" taken from the GTK Ocaml tutorial
> from
>
> -------------
> (* file: base.ml *)
>
> let main () =
> let window = GWindow.window () in
> window#show ();
> GMain.Main.main ()
>
> let _ = main ()
> -------------------
> You can compile the above program with ocamlc using:
>
> ocamlc -I +lablgtk2 -o base lablgtk.cma gtkInit.cmo base.ml
>
> HOWEVER when I do that i get the following error message
>
> File "base.ml", line 4, characters 15-29:
> Unbound value GWindow.window
>
> anyone got any idea what it is ?

It is likely that lablgtk2 is not correctly installed on your system.
Did you checked for gWindow.cmi in `ocamlc -where`/lablgtk2 for instance?

To check your lablgtk2 installation, you can also try to launch the
lablgtk2 toplevel, with the "lablgtk2" command. Then you can type in the
sample code above directly in the toplevel. (But it is likely that
you'll get the same error message, since it means that gWindow.cmi is
not found).

--
Jean-Christophe

0 new messages