At a unix shell:
1. type sbcl
2. When you get the CL-USER(1): prompt type asdf::*central-registry*
This is the result on my system:
CL-USER(1): asdf::*central-registry*
(#P"/Users/Nandan/nb/clbuild/systems/" #P"/home/nb/clbuild/systems/"
(MERGE-PATHNAMES ".sbcl/systems/" (USER-HOMEDIR-PATHNAME))
(LET ((ASDF::HOME (POSIX-GETENV "SBCL_HOME")))
(WHEN (AND ASDF::HOME (NOT (STRING= ASDF::HOME "")))
(MERGE-PATHNAMES "site-systems/" (TRUENAME ASDF::HOME))))
*DEFAULT-PATHNAME-DEFAULTS*)
CL-USER(2):
Then, type the following in sequence:
1. (require 'asdf)
2. (require 'asdf-install)
3. (asdf-install::install 'sb-posix)
Results:
*DEFAULT-PATHNAME-DEFAULTS*)
CL-USER(2): (require 'asdf)
NIL
CL-USER(3): (require 'asdf-install)
("ASDF-INSTALL")
CL-USER(4): (asdf-install::install 'sb-posix)
Install where?
1) System-wide install:
System in /opt/local/lib/sbcl/site-systems/
Files in /opt/local/lib/sbcl/site/
2) Personal installation:
System in /Users/Nandan/.sbcl/systems/
Files in /Users/Nandan/.sbcl/site/
-->
Usually I select 2, the personal installation. You will have to ignore
the GPG key or somehow obtain it. (Google GPG key and asdf install for
an explanation).
Normally clbuild handles dependencies, installing cl-fad through
clbuild should have, ideally, installed sb-posix.
But it appears that clbuild does not know about sb-posix, witness
[~/nb/clbuild] tallinn: ./clbuild install sb-posix
warning: no dependencies for sb-posix found
Error: cannot download unknown project sb-posix
Sat Oct 03 [~/nb/clbuild] tallinn:
Lastly, what system are you on (Debian, Gentoo etc.) and how did you
install sbcl (through apt-get, rpm, or clbuild?).
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"weblocks" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/weblocks?hl=en
-~----------~----~----~----~------~----~------~--~---