-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgclload1.lsp
54 lines (46 loc) · 1.77 KB
/
gclload1.lsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#+ecl (si::package-lock (find-package "COMMON-LISP") nil)
#+ecl (compile nil '(lambda () nil))
#+ecl (setq c:*suppress-compiler-warnings* t
c:*suppress-compiler-notes* t
c:*suppress-compiler-messages* t)
#+:armedbear (require 'pprint)
#+cmu
(progn
(setq ext:*gc-verbose* nil)
;; Set *default-pathname-defaults* to include the full path to this
;; file. This is needed for the tests so that they'll be loaded
;; correctly from the subdirectories.
(setf *default-pathname-defaults*
(make-pathname :name nil :type nil :defaults *load-truename*)))
#+gcl (setq compiler:*suppress-compiler-notes* t
compiler:*suppress-compiler-warnings* t
compiler:*compile-verbose* nil
compiler:*compile-print* nil)
#+lispworks (setq compiler::*compiler-warnings* nil)
#+lispworks (make-echo-stream *standard-input* *standard-output*)
#+clisp (setq custom::*warn-on-floating-point-contagion* nil)
;;; Configure logical pathnames
(defvar *aux-dir*
(merge-pathnames "auxiliary/"
(make-pathname
:directory
(pathname-directory *load-truename*))))
(let (*load-verbose* *load-print* *compile-verbose* *compile-print*)
(load "compile-and-load.lsp"))
(let (*load-verbose* *load-print* *compile-verbose* *compile-print*)
(load "rt-package.lsp")
(compile-and-load "rt.lsp")
(load "cl-test-package.lsp")
(in-package :cl-test)
(compile-and-load* "ansi-aux-macros.lsp")
(handler-bind
#-sbcl ()
#+sbcl ((sb-ext:code-deletion-note #'muffle-warning))
(load "universe.lsp"))
(compile-and-load* "random-aux.lsp")
(compile-and-load* "ansi-aux.lsp")
(load "cl-symbol-names.lsp")
(load "notes.lsp"))
(setq *compile-verbose* nil
*compile-print* nil
*load-verbose* nil)