":" ; exec sbcl --script "$0" "$@" ; exit # -*- Lisp -*- ;;;;; Really runs on any decent Common Lisp implementation ;;;;; Can also be invoked by cl-launch 4: ;;;;; cl-launch -sp asdf-tools -r entry-point -- "$@" (in-package :cl-user) ;; That may be default, but let's make double sure and tell SLIME. ;;; Ensure we load and configure this particular ASDF (eval-when (:compile-toplevel :load-toplevel :execute) (unless (member :cl-launch *features*) ;; (not necessary if we're invoked via cl-launch) (load (make-pathname :name "load-asdf" :type "lisp" :defaults (or *compile-file-truename* *load-truename* (truename *default-pathname-defaults*)))))) ;;; ASDF3 is loaded, now use it! (eval-when (:compile-toplevel :load-toplevel :execute) #-quicklisp (asdf:load-system :asdf-tools :verbose nil) #+quicklisp (let ((*standard-output* (make-broadcast-stream))) (ql:quickload :asdf-tools))) (in-package :asdf-tools) ;;; Actually run the stuff! (restore-image :entry-point 'entry-point :lisp-interaction nil)