There are usually two considerations when delivering an application.
That is, turn the application into a single executable file that needs no assistance from LispWorks in order to run.
That is, make the application smaller than the development environment plus application code.
We recommend delivering a standalone application first, with no attempt to make the image smaller. Do this by delivering at delivery level 0, which removes very little from the image. You can then look into making the image smaller if you need to.
If you try to do both of these in the first attempt and the delivered application does not work, it is not clear whether the wrong thing was removed from the image, or the application would not have delivered properly even if no image reduction work was done.
Once you have developed and compiled your application, you are ready to deliver it as a standalone application Delivering a standalone version is done by calling deliver with level 0, which does not try to make the image smaller, but removes the LispWorks environment. To do this modify your deliver.lisp script from Delivering the program as appropriate to your application:
(load-my-application)
;;; unless you have it already loaded as suggested in
;;;Saving the image before attempting delivery
(deliver 'my-function "my-program" 0 :interface :capi)
(quit)
This is assuming your application uses CAPI. If it does not, you can eliminate :interface :capi. In this case, if your application requires multiprocessing, you to need to pass :multiprocessing t
:
(deliver `my-function "my-program" 0 :multiprocessing t)
Then call LispWorks with deliver.lisp as an init file.
lispworks-4200.exe -init deliver.lisp
On UNIX and Linux, type to a shell:
unix% lispworks -init deliver.lisp
This creates an executable in my-program.exe
on Windows, or my-program
on UNIX. When this executable starts, it calls my-function
without arguments.