I've just started learning Lisp and I can't figure out how to compile and link lisp code to an executable. Im using clisp and "clisp -c" produces two files .fas and .lib, what do I do next to get an exeutable?
|
|
I was actually trying to do this today, and I found typing this into the interpreter worked:
where main is the name of the function you want to call when the program launches, :QUIET t suppresses the startup banner, and :EXECUTABLE t makes a native executable. It can also be useful to call
at the end of your main function in order to stop the user from getting an interactive lisp prompt when the program is done. EDIT: Reading the documentation, you may also want to add :NORC t (read link) |
||
|
|
|
|
This is a Lisp FAQ (slightly adapted):
|
||
|
|
|
|
Take a look at the the official clisp homepage. There is a FAQ that answers this question. |
||
|
|
|
|
Each compiler has it's way of doing it. For examples:
|
||
|
|
|
|
Unfortunately it looks like the clisp faq doesn't give you any better options than associating the file extension with clisp for runtime. This post might help you though: http://carpathia.blogspot.com/2007/02/free-lisp-executables-in-windows.html Good luck! |
|||
|
|
|
|
I've never found a good way to do it in Common Lisp and I wrote about it on: http://pupeno.com/blog/the-problem-with-lisp and some possible solutions on: http://pupeno.com/blog/solving-lisps-problem-a-simplistic-solution http://pupeno.com/blog/another-simplistic-solution-with-scons Now I'm working with Clojure, where the usual way to write Java programs apply. |
||
|
|
|
|
CLiki has a good answer as well: Creating Executables |
||
|
|
