Re: [Chicken-users] Creating my own extensions

2012-03-12 Thread Felix
From: Alaric Snell-Pym Subject: Re: [Chicken-users] Creating my own extensions Date: Tue, 06 Mar 2012 17:28:26 + > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > On 03/06/2012 05:25 PM, Mario Domenech Goulart wrote: >>> For starters, there is no exe named ch

Re: [Chicken-users] Creating my own extensions

2012-03-06 Thread Christian Kellermann
Hi Mark, * Mark Carter [120306 19:59]: > Mario Domenech Goulart > > > Maybe this document can be useful: > > http://wiki.call-cc.org/eggs%20tutorial > > OK, after many chicken sacrifices (strangely appropriate somehow), I was > able to build my extension and load it. Just one comment: I think

Re: [Chicken-users] Creating my own extensions

2012-03-06 Thread Mark Carter
Mario Domenech Goulart > Maybe this document can be useful: > http://wiki.call-cc.org/eggs%20tutorial OK, after many chicken sacrifices (strangely appropriate somehow), I was able to build my extension and load it. Just one comment: I think there is a doc fix needed at http://wiki.cal

Re: [Chicken-users] Creating my own extensions

2012-03-06 Thread John Cowan
Alaric Snell-Pym scripsit: > Is it time we either: > > 1) Removed /3/ from the wiki? > 2) Kept it online for archival purposes, but put it somewhere even more > hidden-away and obviously not current? > 3) Slapped a big warning banner on every /3/ page? I favor 3. -- If you understand,

Re: [Chicken-users] Creating my own extensions

2012-03-06 Thread Alaric Snell-Pym
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 03/06/2012 05:25 PM, Mario Domenech Goulart wrote: >> For starters, there is no exe named chicken-setup in Debian, although >> there is a chicken-install. The following wiki page suggests that there >> should be: >> http://wiki.call-cc.org/man/3/chi

Re: [Chicken-users] Creating my own extensions

2012-03-06 Thread Mario Domenech Goulart
Hi Mark, On Tue, 6 Mar 2012 16:57:11 + Mark Carter wrote: > I'm a bit confused about how to create extensions. I have the following > files in an mccsl directory: > > mccsl.setup: > (compile -s mccsl.scm) > (install-extension 'mccsl "mccsl.so") > > mccsl.scm: > (module > mccsl ( define-s

[Chicken-users] Creating my own extensions

2012-03-06 Thread Mark Carter
I'm a bit confused about how to create extensions. I have the following files in an mccsl directory: mccsl.setup: (compile -s mccsl.scm) (install-extension 'mccsl "mccsl.so") mccsl.scm: (module mccsl ( define-simple-syntax) (import scheme) ... ;; lots of definitions ) I have managed to lo