The function deliver is the main interface to the delivery tools. Its basic syntax is shown below:
deliver function file level &rest keywords
The following three arguments are required:
function | |
file | A string or pathname naming the file in which the delivered image should be saved. On macOS, you may wish to create an application bundle containing your delivered image. For an example showing how to do this, see 13.3 Creating a macOS application bundle. |
level |
For the complete syntax and description, see the reference entry for deliver.
The most important keywords arguments are :interface and :multiprocessing. If your application uses the CAPI, you must pass :interface :capi
. If your application does not use the CAPI, but does use multiprocessing, then you must pass :multiprocessing t
. Your first attempt to deliver your application should use no more than these keywords.
In addition, a variety of other keywords can be passed to deliver. These are for fine-tuning by controlling aspects of delivery explicitly. Add more keywords only when you find that you need them.
All the deliver keywords are documented in 5 Keywords to the Delivery Function. Additionally, they can been seen in the LispWorks image by calling:
(require "delivery") (deliver-keywords)
Delivery User Guide - 01 Dec 2021 19:35:04