From: Wroot
Subject: CLISP & CMUCL: non-interactive execution
Date: 
Message-ID: <9vev0f$qlq$2@newsmaster.cc.columbia.edu>
Hi

With CLISP and CMUCL, is it possible to produce executable files from *.lsp 
sources or at least execute the programs non-interactively on systems that 
have CLISP and CMUCL installed respectively?

The closest I got to it was:

$ clisp -c bla.lsp
$ clisp
>> (load "bla")
>>...

Thanks

Wroot
-- 
Please note: mail sent to ·····@my-deja.com is ignored.
From: Dr. Edmund Weitz
Subject: Re: CLISP & CMUCL: non-interactive execution
Date: 
Message-ID: <m34rmshnnv.fsf@bird.agharta.de>
Wroot <·····@my-deja.com> writes:

> Hi
> 
> With CLISP and CMUCL, is it possible to produce executable files
> from *.lsp sources or at least execute the programs
> non-interactively on systems that have CLISP and CMUCL installed
> respectively?
> 
> The closest I got to it was:
> 
> $ clisp -c bla.lsp
> $ clisp
> >> (load "bla")
> >>...

See <http://www.actrix.gen.nz/users/mycroft/runlisp.html> (CMUCL) or
<http://clisp.sourceforge.net/impnotes.html#quickstart> (CLISP) for
examples.

To produce stand-alone executables you'll need ECLS
<http://ecls.sourceforge.net/> or the commercial (non-trial) versions
of LispWorks or ACL.

Edi.