[CM] asdf and clm on sbcl

Tito Latini tito.01beta at gmail.com
Wed Feb 15 09:41:59 PST 2017


On Wed, Feb 15, 2017 at 12:20:03PM -0500, Juan Reyes wrote:
> 
> Hi,
> 
> As pointed out back in December, ASDF system definition file for CLM
> doesn't seem to work.
> 
> On SBCL (1.3.5) if I type,
> 
>  (require :asdf)
> 
>  (load "clm.asd")
> 
> I get,
> "There is no class named COMMON-LISP-USER::COMPILE-OP."
> 
> On SBCL, besides (require :asdf), do we need to load or get other ASDF
> features in order to get 'compile-op' working ?.
> 
> Of course, if I go back to Rick's previous definition I get ASDF working
> on SBCL again.

I forgot

    (in-package :asdf-user)

at the beginning of clm.asd.

An example of ${HOME}/.sbclrc file:

(require :asdf)

(dolist (l (list '*default-pathname-defaults* #p"/path/to/clm/"))
  (pushnew l asdf:*central-registry* :test #'equal))


More information about the Cmdist mailing list