[Openmcl-devel] asdf problem in CCL

Paul Krueger plkrueger at comcast.net
Sun Apr 3 14:35:44 PDT 2022


I’m running Clozure Common Lisp Version 1.12.1 (v1.12.1) DarwinX8664 that I built from scratch a few months ago. 

I understand that asdf and quickload are included as part of the distribution.
CCL says it is running version 3.3.4 of asdf:
? (asdf:asdf-version)
“3.3.4"

That has worked just fine when using quickload for both things that I have created previously myself that are located in ~/common-lisp/…
and for loading other packages supported by quickload.

However when trying to load a new system that is defined in ~/common-lisp/pkclide/pkclide.asd I get the following:
? (asdf:find-system "pkclide")
> Error: Error Component "pkclide" not found
> While executing: (:INTERNAL (ASDF/SYSTEM:FIND-SYSTEM (STRING))), in process Listener(4).
> Type cmd-. to abort, cmd-\ for a list of available restarts.
> Type :? for other options.
1 > (truename "~/common-lisp/pkclide/pkclide.asd")
#P"/Users/paul/common-lisp/pkclide/pkclide.asd"
1 > 

I wanted to test to see if I had the same problem with SBCL, so I first made sure that I had the latest quickload installation (which includes an asdf.lisp file to use if no other one is available). When I start SBCL and load quickload in the recommended way, I end up with asdf version 3.3.1. As it turns out, this has no difficulty finding new systems that are in ~/common-lisp/…

I tried to blow away some cached things, but that made no difference. However I’m pretty sure that I did not get all the right things because I can still load older systems defined in that same ~/common-lisp/ directory (“older” meaning those that were quickload'ed sometime previous to my latest upgrade of CCL).

I next tried to load the same 3.3.1 version of asdf.lisp that SBCL is using into CCL, but there were all sorts of conflicts with the existing 3.3.4 version. 

I next downloaded the 3.3.5 asdf.lisp and loaded it into both CCL and SBCL … AND GOT EXACTLY THE SAME RESULTS! It was found in SBCL, but not in CCL.

So apparently it isn’t a problem with one version of asdf or another, it is something different about how asdf runs in the CCL environment vs. the SBCL environment.

After spending more than a day working on this and getting no closer to a solution, I have a basically one question for anyone who knows more than I do about this stuff: What the heck am I missing here? It almost seems like it must have something to do with what is cached in the two environments although it seems strange that this would prohibit finding something that is completely new in the ~/common-lisp directory. 

Any and all suggestions for the next thing to try are appreciated ...


More information about the Openmcl-devel mailing list