buildapp

Creates standalone executables from Common Lisp code using SBCL

brewmacoslinux
Try with needOr install directly
Source

About

Creates executables with SBCL

Commands

buildapp

Examples

Create a simple executable from a Lisp file$ buildapp --load myprogram.lisp --entry mypackage:main --output myprogram
Build executable with multiple source files and dependencies$ buildapp --load file1.lisp --load file2.lisp --asdf-tree /path/to/libs --entry app:start --output myapp
Create executable with compressed core and custom entry point$ buildapp --compress-core --load program.lisp --entry main --output executable