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
- .lib
What do I do next to get an executable?
|
I've just started learning Lisp and I can't figure out how to compile and link lisp code to an executable. Im using
What do I do next to get an executable? |
||||
|
|
|
I was actually trying to do this today, and I found typing this into the CLisp REPL 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 suppresses loading the RC file (for example, ~/.clisprc.lisp). |
||||
|
|
|
This is a Lisp FAQ (slightly adapted):
|
|||
|
|
|
Take a look at the the official clisp homepage. There is a FAQ that answers this question. |
|||
|
|
|
CLiki has a good answer as well: Creating Executables |
|||
|
|
|
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. |
|||
|
|