Re: compiling a Lisp source to exe
- From: Rainer Joswig <joswig@xxxxxxx>
- Date: Mon, 29 Sep 2008 21:28:00 +0200
In article
<f3ef0e5d-9aa5-4e4d-8734-6e90729c4ada@xxxxxxxxxxxxxxxxxxxxxxxxxxxx>,
cartercc <cartercc@xxxxxxxxx> wrote:
On Sep 29, 2:43 pm, Rainer Joswig <jos...@xxxxxxx> wrote:
Which Lisp implementation are you using?
On my Windows machine, I am using Lisp in a Box, with clisp 2.33. On
my Linux machine, I am using cmucl dated 2008-04-08.
Well as I said, read the fine manuals.
For CLISP for example:
http://clisp.cons.org/impnotes/image.html
see the :executable option to the function
EXT:SAVEINITMEM .
CMUCL:
http://common-lisp.net/project/cmucl/doc/cmu-user/extensions.html#toc47
See the :executable option to the function extensions:save-lisp .
When you use COMPILE-FILE, you get a piece of compiled Lisp code.
The Lisp code is not portable between different Lisp implementations,
but you can move the compiled code (the 'fasl' file) to another machine,
start the Lisp implementation there and load the compiled file.
So, when you have, say, LispWorks on both Windows machines
you can compile the file on one machine, copy the file to the
other machine and LOAD the file there into LispWorks.
If you have function calls in the file, they will be executed
upon loading - you can also call the defined functions
after loading the compiled file.
I looked at LispWorks now, and almost fell out of my chair at the
prices. I am a student and frankly cannot afford this product. Does
the Personal Edition create exe files? The blurb says that it does not
support application delivery?
Correct, the personal edition does not support application delivery.
I don't need an IDE. I do just fine with Emacs.
Thanks, CC.
--
http://lispm.dyndns.org/
.
- Follow-Ups:
- Re: compiling a Lisp source to exe
- From: cartercc
- Re: compiling a Lisp source to exe
- References:
- compiling a Lisp source to exe
- From: cartercc
- Re: compiling a Lisp source to exe
- From: Rainer Joswig
- Re: compiling a Lisp source to exe
- From: cartercc
- compiling a Lisp source to exe
- Prev by Date: Re: RFC 1037 NFILE implementations around?
- Next by Date: Re: compiling a Lisp source to exe
- Previous by thread: Re: compiling a Lisp source to exe
- Next by thread: Re: compiling a Lisp source to exe
- Index(es):
Relevant Pages
|