[Ecls-list] SAVE-SYSTEM?
Gregory Martin Pfeil
greg at technomadic.org
Tue Nov 15 09:04:09 UTC 2005
On 15 Nov 2005, at 8:00, Nicolas Neuss wrote:
> Hello,
>
> I am loading my Femlisp with ASDF and would like to create a
> standalone
> executable. What is the easiest way to do that? In GCL, I have
> used the
> function SAVE-SYSTEM. Is there an analogue in ECL?
There is now an ASDF operation to do such a thing. If you have an
ASDF system, you can just:
(asdf:oos 'asdf:build-op 'my-system :type :program)
or, for a bit more brevity, there's a wrapper:
(make-build 'my-system :type :program)
More information about the ecl-devel
mailing list