File tree Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Expand file tree Collapse file tree 1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ ; ;;
2
+ ; ;; 2010-03-08 janderson
3
+ ; ;;
4
+ ; ;; init file for asdf testing on aws
5
+ ; ;; see asdf-pathname-test.sh
6
+
7
+ ; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
8
+
9
+ (in-package :cl-user )
10
+
11
+ (setq *load-verbose* (setq *compile-verbose* nil ))
12
+
13
+ #+ sbcl
14
+ (declaim (sb-ext :muffle-conditions warning ))
15
+
16
+ #+ cmucl
17
+ (declaim (optimize (ext :inhibit-warnings 3 )))
18
+
19
+ (defparameter *binary-path*
20
+ (make-pathname :directory ` (:absolute " ebs" " test" " bin"
21
+ #+ abcl " abcl"
22
+ #+ allegro " alisp"
23
+ #+ ccl " ccl"
24
+ #+ clisp " clisp"
25
+ #+ cmucl " cmucl"
26
+ #+ ecl " ecl"
27
+ #+ lispworks " lw"
28
+ #+ sbcl " sbcl" )
29
+ :name " asdf" :type (pathname-type (compile-file-pathname " test.lisp" ))))
30
+
31
+ (ensure-directories-exist *binary-path* )
32
+ (unless (and (probe-file *binary-path* )
33
+ (> (file-write-date *binary-path* ) (file-write-date #p " /ebs/test/asdf/asdf.lisp" )))
34
+ (print (compile-file #p " /ebs/test/asdf/asdf.lisp" :output-file *binary-path* )))
35
+ (load *binary-path* )
36
+
You can’t perform that action at this time.
0 commit comments