Andrew Ray

Results 58 comments of Andrew Ray

See andrewray/iocamlserver#10 for some background to this and the option -no-split-lines for the current solution, also noted here http://andrewray.github.io/iocamljs/adding_demos.html On 10 Oct 2014 08:56, "Thomas Gazagnaire" [email protected] wrote: > The...

If you have a simple template based approach that would be ideal.

That's fine. iocaml installs half of opam anyway!

Further update; it also fails on ubuntu 16.04 when run in Virtualbox, while working fine on my native 16.04 laptop. So this problem is something to do with running lwt...

`iocaml` provides a toplevel repl which can be driven over zmq via json messages. If you have any experience with the ipython tools then this might be a reasonable way...

Working with this example ``` struct na { int a; struct { int x; } b; }; ``` I have updated the cstubs structs example. In `bindings_stubs_gen.c` we get a...

Small update here - having looked through the generated code with Ctypes_structs I realised I could generate an equivalent myself with information from clang. For the time being, I am...

The instructions [here](http://stackoverflow.com/questions/39628098/error-trying-to-require-ctypes-foreign-in-utop-on-windows-cygwin), specifically the bit about adding the following to `.bashrc` ``` export PATH="/usr/x86_64-w64-mingw32/sys-root/mingw/bin:$PATH" ``` makes foreign work.

I wonder if you could give an indication of this? I have converted to static_funptr to make things work with `Cstubs`, and I can see how to pass a C-callback...

Thanks. I think I am getting a bit confused with how the various types map between Foreign and Cstubs, especially with regards to function pointers. I guess what I am...