All Manuals > LispWorks User Guide and Reference Manual > 12 Customization of LispWorks > 12.3 Saving a LispWorks image

NextPrevUpTopContentsIndex

12.3.5 Saving a non-GUI image with multiprocessing enabled

To create an image which does not start the LispWorks IDE automatically, make a save-image script, for example in /tmp/resave.lisp , containing:

(in-package "CL-USER")
(load-all-patches)
(save-image "~/lw-console"
            :console t
            :multiprocessing t
            :environment nil)

Run LispWorks like this to create the new image ~/lw-console :

lispworks-6-1-0-x86-linux -build /tmp/resave.lisp

LispWorks User Guide and Reference Manual - 21 Dec 2011

NextPrevUpTopContentsIndex