logoalt Hacker News

pjmlpyesterday at 5:16 PM1 replyview on HN

Note that nowadays with Panama, there are more FFI opportunities in JVM implementations as well.

Although it is rather verbose, and it is easier to have a C header and run jextract on it, instead of the manual boilerplate.

No idea how well AI tooling would manage.


Replies

ramblurryesterday at 6:53 PM

Coffi is a great library that makes Panama FFI/FFM painless without interop. https://github.com/IGJoshua/coffi

For example look at this arc from sqlite4clj https://github.com/andersmurphy/sqlite4clj/blob/master/src/s... it's very elegant.

(Also can plug my own libvips wrapper using coffi https://github.com/outskirtslabs/vips)

Using FFI/FFM "vanilla" with java interop is also viable, and in my experience the SOTA models do just fine with it (with or without jextract).

show 1 reply