Is there a way to determine what asdf system contains a piece of code? Obviously:
(let ((p *package*))
(defun get-package ()
p))
Getting the package that code is compiled under is trivial. What's the equivalent for asdf systems?
I can settle for:
- A portable way to determine the current source file.
- A way to determine the source system of a package.