<div dir="ltr"><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:small">That's the entire defsystem.  But it's inside the file <a href="https://gitlab.common-lisp.net/cmucl/cmucl/blob/master/tests/pcl.lisp">https://gitlab.common-lisp.net/cmucl/cmucl/blob/master/tests/pcl.lisp</a></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:small">The entire error message (sorry for not including it earlier):</div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-size:small"><span style="font-family:monospace,monospace">Error while trying to load definition for system pcl-test from pathname /Volumes/share2/src/clnet/cmucl/snapshot-2017-10/tests/pcl.lisp: Circular dependency: ((#<ASDF/FIND-SYSTEM:DEFINE-OP> . #<ASDF/SYSTEM:SYSTEM "pcl-test">) (#<ASDF/LISP-ACTION:LOAD-OP> . #<ASDF/SYSTEM:SYSTEM "pcl-test">) (#<ASDF/LISP-ACTION:LOAD-OP> . #<ASDF/LISP-ACTION:CL-SOURCE-FILE "pcl-test" "pkg">) (#<ASDF/LISP-ACTION:PREPARE-OP> . #<ASDF/LISP-ACTION:CL-SOURCE-FILE "pcl-test" "pkg">) (#<ASDF/LISP-ACTION:PREPARE-OP> . #<ASDF/SYSTEM:SYSTEM "pcl-test">))<br>Restarts:<br>  0: [CONTINUE                     ] Return NIL from load of #P"/Volumes/share2/src/clnet/cmucl/snapshot-2017-10/tests/pcl.lisp".<br>  1: [RETRY                        ] Retry #<DEFINE-OP> on #<SYSTEM "pcl-test">.<br>  2: [ACCEPT                       ] Continue, treating #<DEFINE-OP> on #<SYSTEM "pcl-test"> as having been successful.<br>  3:                                 Retry ASDF operation.<br>  4: [CLEAR-CONFIGURATION-AND-RETRY] Retry ASDF operation after resetting the configuration.<br>  5:                                 Retry ASDF operation.<br>  6:                                 Retry ASDF operation after resetting the configuration.<br>  7:                                 Return NIL from load of #P"/Volumes/share2/src/clnet/cmucl/snapshot-2017-10/tests/pcl.lisp".<br>  8: [ABORT                        ] Skip remaining initializations.</span></div><div class="gmail_default" style="font-size:small"><span style="font-family:monospace,monospace"><br></span></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:small">The file gets loaded from tests/run-tests.lisp</div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:small">I guess maybe that defsystem should be in its own file that pcl.lisp loads?  I have a vague memory that you helped fix some similar issues with some asdf defsystems that I had, that were working fine but stopped working after some upgrade, maybe to 3.2.x.</div><div class="gmail_default" style="font-family:arial,helvetica,sans-serif;font-size:small"><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Sat, Oct 7, 2017 at 8:55 PM, Faré <span dir="ltr"><<a href="mailto:fahree@gmail.com" target="_blank">fahree@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Maybe the circularity is at a wider level. What is the complete error<br>
message? The complete set of .asd files? Are you using<br>
defsystem-depends-on anywhere? Or manually loading .asd's from other<br>
.asd's? How can I reproduce?<br>
<br>
—♯ƒ • François-René ÐVB Rideau •Reflection&Cybernethics• <a href="http://fare.tunes.org" rel="noreferrer" target="_blank">http://fare.tunes.org</a><br>
Passive hope is wishful thinking, a poison of the mind.<br>
Active hope is creative passion, the mover of the universe.<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
On Sat, Oct 7, 2017 at 11:44 PM, Raymond Toy <<a href="mailto:toy.raymond@gmail.com">toy.raymond@gmail.com</a>> wrote:<br>
> The following defsystem worked in asdf 3.2.1 but no longer works in 3.3.0.<br>
> The error message doesn't really help in figuring out what's circular.  And<br>
> I just can't see what's circular.<br>
><br>
> The system:<br>
><br>
> (asdf:defsystem :pcl-test<br>
>   :pathname "pcl/"<br>
>   :components<br>
>   ((:file "pkg")<br>
>    #+gerds-pcl<br>
>    (:file "ctor"<br>
>     :depends-on ("pkg"))<br>
>    (:file "defclass"<br>
>     :depends-on ("pkg"))<br>
>    (:file "make-instance"<br>
>     :depends-on ("pkg" #+gerds-pcl "ctor"))<br>
>    (:file "reinitialize-instance"<br>
>     :depends-on ("pkg" "make-instance"))<br>
>    (:file "slot-value"<br>
>     :depends-on ("pkg" "make-instance"))<br>
>    (:file "slot-boundp"<br>
>     :depends-on ("pkg" "make-instance"))<br>
>    (:file "slot-missing"<br>
>     :depends-on ("pkg" "make-instance"))<br>
>    (:file "slot-accessors"<br>
>     :depends-on ("pkg" "make-instance"))<br>
>    (:file "slot-type"<br>
>     :depends-on ("pkg" "slot-value"))<br>
>    (:file "inline-access"<br>
>     :depends-on ("pkg" "slot-type"))<br>
>    (:file "method-combination"<br>
>     :depends-on ("pkg"))<br>
>    (:file "pv"<br>
>     :depends-on ("pkg"))<br>
>    (:file "defgeneric"<br>
>     :depends-on ("pkg"))<br>
>    (:file "defmethod"<br>
>     :depends-on ("pkg"))<br>
>    (:file "find-method"<br>
>     :depends-on ("pkg"))<br>
>    (:file "methods"<br>
>     :depends-on ("pkg"))))<br>
><br>
> --<br>
> Ray<br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr"><div></div>Ray<br></div></div>
</div>