[
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: | Xavier Leroy <Xavier.Leroy@i...> |
| Subject: | Re: How to use camllex and camlyacc from camlwin |
> I need to know how to compile and use camllex and camlyacc files from
> the PC version of camllight.
> I've been trying to do it, and the only thing that worked was manually
> from DOS prompt...
camlyacc and camllex are command-line tools, so the most natural way
to use them is indeed from a DOS shell, or (better) a Makefile.
Still, you can invoke them from the Caml graphical user interface
using the sys__system_command function. E.g.:
cd "\\the\\right\\directory";;
sys__system_command "camllex mylexer.mll";;
compile "mylexer.ml";;
load_object "mylexer.zo";;
Yet another alternative is to use streams instead of camllex and
camlyacc.
Regards,
- Xavier Leroy