[Asdf-devel] Request for hints debugging ASDF: SLIME-FIND-DEFINITION
Robert P. Goldman
rpgoldman at sift.info
Thu Nov 27 20:55:50 UTC 2014
Faré wrote:
> On Thu, Nov 27, 2014 at 12:30 PM, Robert P. Goldman <rpgoldman at sift.info> wrote:
>> Any advice about the attached would be helpful...
>>
>> 1. I thought I had figured out how to interactively get at the real
>> definitions, instead of the ones dumped into build/asdf.lisp (which I
>> don't want to edit -- that's like editing your binary).
>>
>> I have this function:
>>
>> (defun debug-asdf ()
>> (dolist (c (asdf::required-components :asdf/defsystem :keep-component
>> 'asdf:cl-source-file))
>> (load (asdf:component-pathname c))))
>>
> This works for the non-UIOP part of ASDF.
> For UIOP, (asdf:load-system :uiop :force t) should work.
> See the README.md for the full recipe.
Thanks. I should have remembered that UIOP was separate now.
>
>> 2. SLIME-EDIT-DEFINITION on SBCL is confused by the WITH-UPGRADABILITY
>> macro.
>>
>> Anyone know of a way to clue SLIME in to the fact that what's really
>> wanted is the enclosed DEFUN* form, not the WITH-UPGRADABILITY macro?
>>
>> Interestingly, ACL is *not* fooled by this macro, and drops me where I
>> want to be (although still in asdf.lisp instead of the component file).
>>
>> So this seems to be a problem with SB-INTROSPECT:FIND-DEFINITION-SOURCE,
>> not SLIME per se.
>>
> SBCL's debug information has "toplevel form" granularity.
> For better source information on SBCL,
> you could put every single definition in its own with-upgradability. Ouch.
> Or you could debug with a different implementation.
Yes, I'm debugging in Allegro, since the bug here isn't implementation
specific.
cheers,
r
More information about the asdf-devel
mailing list