There are usually two considerations when delivering an application.
We recommend delivering a standalone executable 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 does remove the LispWorks development tools as described in Functionality removed by delivery. To do this modify your
deliver.lisp
script from Delivering the program as appropriate to your application:
(load-all-patches)
(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)
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 run LispWorks with
deliver.lisp
as a build script. You can do this using the graphical Application Builder tool (see Delivering the program using the LispWorks IDE) or in a command window, like this:
MS-DOS> lispworks-6-0-0-x86-win32.exe -build deliver.lisp
% lispworks-6-0-0-x86-linux -build deliver.lisp
Note: the image name varies between the supported platforms.
% ./lispworks-6-0-0-macos-universal -build deliver.lisp
This creates an executable in
my-program.exe
on Microsoft Windows, or
my-program
on UNIX/Linux/FreeBSD/Mac OS X. When this executable starts, it calls
my-function
without arguments.