robert-strandh / SICL

A fresh implementation of Common Lisp
Other
1.07k stars 78 forks source link

How to Make sure the top-level directory can be found by ASDF. #239

Open wxie1 opened 8 months ago

wxie1 commented 8 months ago

What I have done:

  1. git clone https://github.com/robert-strandh/SICL
  2. ./get-dependencies.sh
  3. (pushnew (truename "/SICL/Code/") ql:local-project-directories ) (ql:register-local-projects) (ql:quickload :SICL)
  4. (asdf:load-system :sicl-boot) => error debugger invoked on a ASDF/FIND-COMPONENT:MISSING-COMPONENT in thread

    <THREAD "main thread" RUNNING {10048D0253}>:

    Component :SICL-BOOT not found

How to Make sure the top-level directory can be found by ASDF using quicklisp?

robert-strandh commented 8 months ago

This doesn't answer your question, but the bootstrapping procedure is currently broken. We are working on an improved bootstrapping procedure, and that will take quite some time yet.

Sorry about that.