Improvements to the make save facility.

This commit is contained in:
Dimitri Fontaine 2019-01-07 20:42:12 +01:00
parent 13bdb2d118
commit 9ce4088b48
2 changed files with 13 additions and 0 deletions

View File

@ -167,6 +167,9 @@ test: $(PGLOADER)
save: ./src/save.lisp $(LISP_SRC)
sbcl --no-userinit --load ./src/save.lisp
check-saved: save
$(MAKE) PGLOADER=$(realpath $(PGLOADER)) CL=$(CL) -C test regress
clean-bundle:
rm -rf $(BUNDLEDIR)
rm -rf $(BUNDLETESTD)/$(BUNDLENAME)/*

View File

@ -12,6 +12,16 @@
when unset."
(or (sb-ext:posix-getenv name) default))
;; So that we can #+pgloader-image some code away, see main.lisp
(push :pgloader-image *features*)
;;;
;;; We need to support *print-circle* for the debug traces of the catalogs,
;;; and while at it let's enforce *print-pretty* too.
;;;
(setf *print-circle* t *print-pretty* t)
(require :asdf) ; should work in SBCL and CCL
(defvar *quicklisp.lisp* "http://beta.quicklisp.org/quicklisp.lisp")