[Chicken-users] How to compile without chicken-config

2006-05-11 Thread Matthew David Parker
I just upgraded to 2.3, and I tried to compile my project, which is just a dynamic chicken library that has foreign access to a dynamic C library. my C library is called libxpilot_ai.so and my scheme file is xpai.ss Normally I type: $ chicken -dynamic xpai.ss compiling `xpai.ss' ... generating

Re: [Chicken-users] How to compile without chicken-config

2006-05-11 Thread Thomas Chust
On Thu, 11 May 2006, Matthew David Parker wrote: [...] Normally I type: $ chicken -dynamic xpai.ss compiling `xpai.ss' ... generating `xpai.c' ... $ gcc -o xpai.so xpai.c path/to/c/lib/libxpilot_ai.so `chicken-config -shared -cflags -libs` Which makes xpai.so and I can load it in csi. But in