On 22/06/07 08:02am, Thompson, David wrote: > It doesn't actually generate standalone binaries. It is very hacky but it > can produce redistributable tarballs for a specific use-case (games using > chickadee) by including shared libraries and other bits from the host > system. Standalone executables will not really be possible until Guile's > compiler is capable of producing them. > > - Dave > > On Mon, Jun 6, 2022 at 9:32 AM Alex Sassmannshausen via General Guile > related discussions <guile-user@gnu.org> wrote: > > > I think the last release of Guile Chickadee by DThompson (< > > https://dthompson.us/projects/chickadee.html>) provides a program that is > > supposed to generate standalone binaries (in the context of games). > > > > You may find either that program or insight from that program useful? > > > > Good luck, > > > > Alex > > > > > > Andy Tai <a...@atai.org> writes: > > > > > Hi, is there a way to “package” set of guile scripts, possibly with > > > other files like extensions, shared libraries, etc all combined into a > > > single executable? Something like PyInstaller for Python. Thanks for > > > info. > >
Hi, The only solution I can think of is to create a script which would collect code from multiples files into a similar file. Not a great solution but it sounds like no good solutions exist so this might be a possibility? Hope you find something that works.