Search code examples
debuggingcompilationlispcommon-lisplispworks

How to compile and run LISP project?


I am new to LISP, currently using LispWorks and ListBox IDE on window server 2008. I want to know that, how can we compile and run LISP project, contain 350 LISP source file. and what will be generate after compilation and how can i run it...? and what's techniques are available to debug lisp project. (it is old technology, so I cannot get much help from internet)


Solution

  • LispWorks comes with a lot of documentation. This documentation is also available on their website.

    LispWorks can:

    • organize source code with a system management tool
    • save images with saved state
    • compile individual files to loadable machine code
    • create shared libraries
    • create stand-alone applications

    Their Delivery User Guide describes how to generate applications. The documentation of DEFSYSTEM describes how to organize source code and how to compile systems.