Re: compiling a Lisp source to exe
- From: "Alex Mizrahi" <udodenko@xxxxxxxxxxxxxxxxxxxxx>
- Date: Mon, 29 Sep 2008 22:19:38 +0300
c> Using gcc (on Windows) like this: [>gcc -o hello.exe hello.c] will
c> produce a file that I can run natively. Is it possible to do this same
c> with a Lisp file?
c> When I run compile-file I don't get anything I can copy to another
c> machine (with a Lisp) and run.
compile-file is like `gcc -c` -- it compliles to sort of object file, but
does not link it to an executable. if you have lisp on your target machine,
you can just load that "object files" (usually called fasls), so you do not
really need linking.
if you actually want a standalone executble, that is made via
implementation-specific functions. for example, check
ECL documentation:
http://ecls.sourceforge.net/new-manual/ch22s06.html
.
- References:
- compiling a Lisp source to exe
- From: cartercc
- compiling a Lisp source to exe
- Prev by Date: [Ann] CLFSWM 0809 release
- 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
|