So I have nice OCaml code (50000 lines). I want to port it to C. So Is there any free OCaml to C translator?
feedback
|
|
This probably isn't what you want, but you can get the OCaml compiler to dump its runtime code in C:
What you get is basically a static dump of the bytecode. The result will look something like:
You can compile it with
For more information, see the OCaml manual. | |||||||
feedback
|
|
The OCamlJS project would be a good starting point. It compiles OCaml to JavaScript; it should be possible to modify it to compile OCaml to ActionScript. Compiling to C would probably be more work - no garbage collection of any kind - but not impossible, particularly if Adobe Alchemy provides APIs to meet some of those needs. | |||
|
feedback
|
|
If I had some OCaml code I wanted to run client-side "in the browser" (which seems to be your intent based on comments with the question), I have to say my first thought would be to do one of
And maybe if I was really crazy:
A two-stage OCaml-to-C, C-to-Flash doesn't really appeal though. | ||||
|
feedback
|