robert-strandh / SICL

A fresh implementation of Common Lisp

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

wxie1 opened this issue · comments

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?

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.