I'm about to do some coding which needs to be cross platform
(windows Linux and MaxOSX), requires a simple GYI and needs to
be reasonably easy to install the resulting executable. For my
favourite platform, Linux, this is a done deal. Thanks!
On windows I will probably choose the MinGW based environment.
For Mac, I notice that there is a pre-compiled Mac binaries for
the compiler:
http://caml.inria.fr/distrib/ocaml-3.09/ocaml-3.09.0.dmg
I presume that these are PowerPC binaries. Is that correct? Is
there likely to be a version soon targetting the Intel CPU soon?
So, on to GUIs. My GUI requirements are rather simple. In fact
the lablTk libraries should do the trick. Has anyone actually
done any Ocaml development with a lablTk GUI targeting all three
platforms? If so, how did it work out?
Cheers,
Erik
--
+-----------------------------------------------------------+
Erik de Castro Lopo
+-----------------------------------------------------------+
I'd rather not work with people who aren't careful. It's darwinism in
software development.
Linus Torvalds on the linux-kernel list
_______________________________________________
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
Yes.
> Is there likely to be a version soon targetting the Intel CPU soon?
The source distribution for 3.09.2 contains full support for MacOSX/Intel,
including native-code generation. There are still a few small
ocamlopt bugs in this port, which I'm currently ironing out.
> So, on to GUIs. My GUI requirements are rather simple. In fact
> the lablTk libraries should do the trick. Has anyone actually
> done any Ocaml development with a lablTk GUI targeting all three
> platforms? If so, how did it work out?
In the standard distribution, there's ocamlbrowser, which has a
labltk-based GUI and works on all three platforms.
- Xavier Leroy
Unfortunately, on MacOSX ocamlbrowser only works properly with the X11
version of Tk (which is very easy to install.)
I tried several times to make it work with the Aqua version, but was
never completely successful.
Most other LablTk programs seem to work properly with the Aqua version
of Tk, so YMMV.
Jacques
I tried compiling ocamlbrowser directly from GODI and it worked out of
the box on my MacBook Pro. AFAIK this was using the Aqua version --
at least it didn't launch X11 like all the other X11 apps do.
Janne