[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [EXT] Re: guile program distributed as single executable?
From: |
james |
Subject: |
Re: [EXT] Re: guile program distributed as single executable? |
Date: |
Tue, 7 Jun 2022 15:12:50 +0100 |
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 <atai@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.