Skip to content

Instantly share code, notes, and snippets.

@martialboniou
Created January 16, 2012 17:08
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 martialboniou/1621825 to your computer and use it in GitHub Desktop.
Save martialboniou/1621825 to your computer and use it in GitHub Desktop.
asdf sbcl quirk fixing with quicklisp
;;; SNIPPET FOR QUICKLISP
;; If you get error when evaluating (asdf::source-registry) in the SBCL REPL
;; you can replace the line '(ensure-asdf-loaded)' in quicklisp/setup.lisp by:
#-asdf
(load (qmerge "asdf.lisp"))
;;; SNIPPET FOR CLBUILD2
;; If you use CLBUILD, ensure SBCL systems and ~/.config/common-lisp/source-registry.conf.d/
;; files are parsed by writing the following lines in conf.lisp at the root of clbuild:
#+asdf2
(asdf:initialize-source-registry)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment