File: make-target-2.lisp

package info (click to toggle)
sbcl 2%3A1.2.4-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 28,576 kB
  • ctags: 20,896
  • sloc: lisp: 375,698; ansic: 28,659; sh: 3,651; asm: 3,103; makefile: 317
file content (14 lines) | stat: -rw-r--r-- 526 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
;;; Now that we use the compiler for macros, interpreted /SHOW doesn't
;;; work until later in init.
#+sb-show (print "/hello, world!")

;;; Until PRINT-OBJECT and other machinery is set up, we want limits
;;; on printing to avoid infinite output.
(let ((*print-length*   10)
      (*print-level*     5)
      (*print-circle*    t)
      (*compile-files-p* t))
  (declare (special *compile-files-p*))
;;; Do warm init.
  #+sb-show (print "/about to LOAD warm.lisp (with *compile-files-p* = T)")
  (load "src/cold/warm.lisp"))