cl-bindgen
cl-bindgen copied to clipboard
A command line tool and library for generating FFI wrappers for Common Lisp
Structs like ``` C struct foo { enum type flag; union { int a; double b; }; }; ``` Cause an assertion error originating here: https://github.com/sdilts/cl-bindgen/blob/920df4cfa5e72c17c3722eda262a0936c9789b11/cl_bindgen/processfile.py#L210-L213 Here's what the C...
Here's a simple header: ```h #include void somefunc(int8_t x); ``` `cl-bindgen` produces an error while processing it: ``` WARNING: errors occured while parsing somec.c This may cause bindings to be...
Under Debian bullseye it is hard?/impossible? to install package clang-17-dev. As such, cl-bindgen has no chance of working. I could try to patch cindex.py etc to work with an older...