I’ve written a transpiler in OCaml and would like to embed it in an application. Pretty sure I get the gist of this from Real World OCaml however I’ve been fiddling around with dune and can’t seem to figure out how to get this working. Can anyone point me to an example of this that uses dune, preferably to -output-obj a c file linkable with the OCaml runtime?
Many thanks, this is very helpful! I’ve forked your repo and extended the demo to illustrate doing the same via an object file (repo). If you would like me to make a pull request let me know.
What I’d really like is to get dune to generate a c file with the OCaml bytecode via -output-obj filename.c so that I can ship this around and only need to link to libcamlrun. I’m pretty sure however that dune doesn’t support this currently.
In my old cludgie Makefile approach the only change needed would be to modify:
ocamlc ... -output-obj filename.o
to
ocamlc ... -output-obj filename.c
This is the first project I’ve tried using dune so take with a grain of salt but I think a mode such as “cfile” and an “%{ext_c}” extension would be needed for this to be simple. I’m sure this could be done using rules in several dune files if you know dune well enough.