Browse thread
[Caml-list] adding an ocaml interpreter to my C program
[
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: | Kip Macy <kmacy@f...> |
| Subject: | [Caml-list] adding an ocaml interpreter to my C program |
It is possible to add many scripting languages as configuration
languages for an arbitrary C program. One can transfer control
to the interpreter, let it use the C bindings to modify program
state, and then get control back. I'll give perl as an example:
void sourceperl(int argc, char **argv) {
PerlInterpreter gdb_perl = perl_alloc();
perl_construct(gdb_perl);
PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
perl_parse(gdb_perl, NULL, argc, argv, (char **)NULL);
perl_run(gdb_perl);
perl_destruct(gdb_perl);
}
I don't see any obvious way of doing this with ocaml. I could link in
GDB to the toplevel and use the toplevel as a frontend, but that isn't
what I'm interested in doing.
I'm using perl as a powerful macro language for gdb by just doing:
(gdb) sourceperl mycoreanalyser.pl
<OUTPUT>
I'd like to also be able to support:
(gdb) sourceocaml mycoranalyser.ml
Is there any way for me to do this?
Thanks.
-Kip
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners