Re: Looking for suggestions on supporting code for chicken and gambit(lambdanative)
"Jörg F. Wittenberger" <[email protected]>
| Newsgroups | gmane.lisp.scheme.chicken |
|---|---|
| Message-ID | <20250128150951.5224a1d0@devuan> |
It might be a bit out of data, but there is something here, which used to work with lambdanative: https://github.com/0-8-15/guidot/blob/master/modules/chckn/chckn.scm https://github.com/0-8-15/guidot/tree/master/libraries/libchicken4 Best Regards Jörg Am Tue, 28 Jan 2025 14:19:52 +0100 schrieb [email protected]: > > I have a program, static compiled from Chicken Scheme, that I'd > > like to use in a lambdanative GUI. The plan was to simply call the > > program with Gambits shell-command. Is there a better option I > > should consider? > > This is definitely the simplest and most robusst approach, depending > on how much interaction and control is needed. Alternatively, you > could compile your CHICKEN code into a library, but that would be a > bit of work, needs to be integrated into whatever lambdanative uses > for building and usually only makes sense if the programs interact in > a complex manner. > > > felix > >