On Thu, Jan 1, 2009 at 8:45 PM, Gregory Sharp <[email protected]> wrote:
> On Thu, Jan 1, 2009 at 9:19 PM, Luke Crook <[email protected]> wrote: > > I use one of the more recent CFFI tarballs; not that version though. I'll > try get an internet connection this evening to see what I get. > > > > You have installed the CFFI dependencies; BABEL, ALEXANDRIA & > TRIVIAL-FEATURES correct? > > > > These are all required if you use the latest CFFI tarballs. These will > get installed by ASDF-INSTALL in Linux, but must be downloaded and installed > manually if you are using win32 (and their paths pushed to > asdf:*central-registry* > > > > Thanks for the tips. I don't think it is a cffi problem per se. > It seems to be a problem with asdf:*central-registry*. > For example, the following code yields the same crash: > > (require :asdf) > (dolist (dir (directory "c:\\Program Files\\Steel Bank Common > Lisp\\1.0.22\\site\\*\\")) > (pushnew dir asdf:*central-registry* :test #'equal)) > (require :asdf-install) ;; <- crash > > But this doesn't > > (require :asdf) > (require :asdf-install) ;; <- no crash > Just a hunch: What if you use the following? (require :asdf) (require :asdf-install) (dolist (dir (directory "c:\\Program Files\\Steel Bank Common Lisp\\1.0.22\\site\\*\\")) (pushnew dir asdf:*central-registry* :test #'equal)) -- Elliott Slaughter "Any road followed precisely to its end leads precisely nowhere." - Frank Herbert
_______________________________________________ application-builder mailing list [email protected] http://www.lispniks.com/mailman/listinfo/application-builder
