Re: Looking for suggestions on supporting code for chicken and gambit(lambdanative)
Matt Welland <[email protected]>
| Newsgroups | gmane.lisp.scheme.chicken |
|---|---|
| Message-ID | <CAFp=Co=M6=LMFHWNFT4m7hm-JhQXvAx=+KKsiDdzzGvPNXJJsg@mail.gmail.com> |
Thanks Jörg and Felix for the thoughts on alternatives to running the process and collecting the output from stdout. I think I can keep things simple enough to make the shell approach suffice for now. On Tue, Jan 28, 2025 at 9:09 AM Jörg F. Wittenberger < [email protected]> wrote: > 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 > > > > > >