aartaka / graven-image

Portability library for better interaction and debugging of a running Common Lisp image through text REPL.
BSD 3-Clause "New" or "Revised" License
19 stars 3 forks source link

Needed to depend-on sb-introspect for sbcl #7

Closed atgreen closed 1 year ago

atgreen commented 1 year ago

I needed to add the following for this to load into sbcl:

diff --git a/graven-image.asd b/graven-image.asd
index eef5627..23c0a60 100644
--- a/graven-image.asd
+++ b/graven-image.asd
@@ -11,7 +11,7 @@
   :version "0.0.1"
   :serial t
   :pathname "source/"
-  :depends-on ("closer-mop" "trivial-gray-streams")
+  :depends-on ("closer-mop" "trivial-gray-streams" #+sbcl "sb-introspect")
   :components ((:file "package")
                (:file "graven-image")
                (:file "function-lambda-expression")
aartaka commented 1 year ago

Thanks! I haven't noticed it because I have SBCL with sb-introspect included by default. Fixed with f2638d6f1560a237c80049adfce7087dc1b8b8ba.