Buildapp is a program that facilitates the creation of standalone Common Lisp binaries using or .
Example Usage
For an application with a system named my-app
, and the entry function
my-app:main
, the following will produece a binary named myapp
.
buildapp --output myapp \
--asdf-path . \
--asdf-tree ~/quicklisp/dists \
--load-system my-app \
--entry my-app:main