armedbear / abcl

Armed Bear Common Lisp <git+https://github.com/armedbear/abcl/> <--> <svn+https://abcl.org/svn> Bridge
https://abcl.org#rdfs:seeAlso<https://gitlab.common-lisp.net/abcl/abcl>
Other
288 stars 29 forks source link

Another stepper contrib for ABCL! (this time for compiled code) #654

Open alejandrozf opened 8 months ago

alejandrozf commented 8 months ago

I'm happy to add another tool to debug programs in ABCL :)

For more information see the file contrib/abcl-jvm-stepper/README.markdown

easye commented 8 months ago

We could possibly add your examples in the README as a simple to test to ensure the code compiles and executes under the Github CI?

alejandrozf commented 8 months ago

You seem to have missed a defpackage in the ASDF definition as I get the following error trying to load this code:


The package "STEPPER" can't be found.
   [Condition of type READER-ERROR]
Thank you @easye , it was an obsolete dependency on ABCL-STEPPER that I forgot to remove
alejandrozf commented 8 months ago

We could possibly add your examples in the README as a simple to test to ensure the code compiles and executes under the Github CI?

Done :+1:

fosskers commented 2 months ago

This seems useful. What's the status?

alejandrozf commented 2 months ago

Hi @fosskers

This stepper works out of the box only on function calls. To ensure it can step into other subforms you need to "decorate" the subform in order to make it "steppable". In the Readme I have explained how to do it. I want to make it step into all the subforms but I couldn't make it yet. I don't have too much time to hack on ABCL these days, so if someone can help me on it would be awesome.