Re: [ANN] nyacc-2.00.0 released
Matt Wette <[email protected]>
| Newsgroups | gmane.lisp.guile.user |
|---|---|
| Message-ID | <[email protected]> |
On 9/20/24 10:47 AM, Matt Wette wrote: > Hi All, > > I've generated a new release of nyacc. Due to major change in > the ffi-helper I'm calling this nyacc-2.00.0. One key item I wanted to mention is that the `set!' procedure from the new cdata module expects the value after the cdata object and before the selection tags: bytestructures and fh-types: (bytestructure-set! bsobj 'a 'b 'c value) (fh-object-set! fhobj 'a 'b 'c value) cdata (like Guile's array): (cdata-set! data value 'a 'b 'c) Also, I've already discovered a bug in 2.00.0 compile-ffi script: It will always compile all dependent ffis. I have a fix pushed, to appear in 2.00.1 later. Matt