cl-bindgen icon indicating copy to clipboard operation
cl-bindgen copied to clipboard

A command line tool and library for generating FFI wrappers for Common Lisp

Results 3 cl-bindgen issues
Sort by recently updated
recently updated
newest added

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...

bug

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...