Skip to content

Instantly share code, notes, and snippets.

@goncha
Created March 8, 2012 09:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goncha/1999909 to your computer and use it in GitHub Desktop.
Save goncha/1999909 to your computer and use it in GitHub Desktop.
LispWorks bootstrap
(in-package "CL-USER")
(change-directory "D:\\code\\lisp\\")
(dolist (file (list "asdf.lisp"))
(compile-file file :load t))
(setf asdf:*central-registry*
(remove-if #'null
(mapcar #'(lambda (file) (if (eq :unspecific (pathname-name file)) file))
(directory #P"D:/code/lisp/"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment