Skip to content

Instantly share code, notes, and snippets.

View synchromesh's full-sized avatar

John Pallister synchromesh

View GitHub Profile
@synchromesh
synchromesh / build.lisp
Created November 30, 2015 08:15
Attempt at ABCL build.lisp to call ABCL-JAR:PACKAGE from Ant
(eval-when (:execute)
(format t "EVAL-WHEN: :execute~%"))
;; Copied from my .abclrc
(let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname))))
(when (probe-file quicklisp-init)
(format t "Loading ~A~%" quicklisp-init)
(load quicklisp-init)))
(format t "Requiring~%")