lisp/build-binary @ 7bcae6fc1b59

more
author Steve Losh <steve@stevelosh.com>
date Wed, 02 Jan 2019 14:02:48 -0500
parents c6afac579697
children 3e8af1c65b8c
#!/usr/bin/env bash

set -euo pipefail

LISP=$1
BINARY=$(basename "$1" .lisp)
shift

sbcl --load "$LISP" --eval "(sb-ext:save-lisp-and-die \"$BINARY\" :executable t :save-runtime-options t :toplevel 'toplevel)" "$@"