Re: [Chicken-users] Help building latest sources

2011-10-09 Thread Toby Thain
On 08/10/11 8:27 AM, Vitaly Magerya wrote: Did you build a boot chicken for bootstrapping? Note that you will need a chicken installed for this. $ gmake PLATFORM=bsd boot-chicken $ gmake PLATFORM=bsd CHICKEN=./chicken-boot $ gmake PLATFORM=bsd install I have put up a little tutorial on the wiki

Re: [Chicken-users] inline vectors vs. srfi-9 records vs. non-inlined vectors -- or -- anything faster than srfi-9?

2011-10-09 Thread Kon Lovett
On Oct 8, 2011, at 6:40 PM, Matt Welland wrote: > I'm in the habit of using inlined vector access for poor mans records: > > (define-inline (db:test-get-id vec) (vector-ref vec 0)) > (define-inline (db:test-get-run_id vec) (vector-ref vec 1)) > > > on the assumption that it