commit 5042795337bf9585170ec7a9b6d3cd503fb16b8c parent 1a7e38c70cb1a22f8428512dd08cba66300bf746 Author: Risto Stevcev <me@risto.codes> Date: Wed, 29 Dec 2021 12:54:23 +0100 Updated readme Diffstat:
M | README.md | | | 32 | ++++++++++++++++++++++++++++++++ |
1 file changed, 32 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md @@ -102,6 +102,38 @@ it could be updated via other means like directly cloning dependencies from a gi ultralisp. +## Slimv + +Slimv doesn't seem to set env vars: + +```lisp +CL-USER> (uiop:getenv "CL_SOURCE_REGISTRY") +NIL +``` + +Which means that `asdf` won't be able to find your systems. + +A hacky workaround: + +```sh +$ echo $CL_SOURCE_REGISTRY +/home/risto/git/lisp/lqlite/:/home/risto/git/lisp/lqlite/lisp-systems// +``` + +```lisp +CL-USER> (si:setenv "CL_SOURCE_REGISTRY" "/home/risto/git/lisp/lqlite/:/home/risto/git/lisp/lqlite/lisp-systems//") +"/home/risto/git/lisp/lqlite/:/home/risto/git/lisp/lqlite/lisp-systems//" +CL-USER> (uiop:getenv "CL_SOURCE_REGISTRY") +"/home/risto/git/lisp/lqlite/:/home/risto/git/lisp/lqlite/lisp-systems//" +CL-USER> (asdf:clear-source-registry) +; No value +CL-USER> (asdf:ensure-source-registry) +; No value +CL-USER> (asdf:load-system :alexandria) +T +``` + + ## Roadmap - Support Ultralisp