From: Kip Macy <kmacy@fsmware.com>
To: caml-list@inria.fr
Subject: [Caml-list] adding an ocaml interpreter to my C program
Date: Wed, 7 Jan 2004 01:01:00 -0800 (PST) [thread overview]
Message-ID: <20040107005029.V39150@demos.bsdclusters.com> (raw)
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
next reply other threads:[~2004-01-07 9:01 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-01-07 9:01 Kip Macy [this message]
2004-01-07 13:00 ` Richard Jones
2004-01-07 15:42 ` Kip Macy
2004-01-07 16:04 ` Richard Jones
2004-01-07 16:51 ` Damien Doligez
2004-01-07 21:09 ` Kip Macy
2004-01-08 16:40 ` Adolf Mathias
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040107005029.V39150@demos.bsdclusters.com \
--to=kmacy@fsmware.com \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox