[ab] sbcl 1.0 and lisbuilder-sdl
Justin Heyes-Jones
justinhj at gmail.com
Sat Dec 2 09:49:54 CST 2006
I decided to download sbcl 1.0 for win32, and test it out. It works
perfectly with the lispbuilder-sdl wrapper and examples I tried all
worked fine. I'll post instructions on how to make a deliverable .exe
(when I figure out how to do that.)
Once I installed sbcl from the windows installer all I needed to do was...
;;;; do set up stuff for sbcl (note that I'm setting up explicit
search paths for every asdf
;;;; system, as I can't seem to get the install working
(require :asdf)
; load cffi
(pushnew "C:\\cygwin\\home\\Justin\\.asdf-install-dir\\site\\cffi\\"
asdf:*central-registry* :test 'equal)
(asdf:operate 'asdf:load-op :cffi)
;;;; setup the lispbuilder paths
(pushnew "c:\\cygwin\\home\\justin\\lispbuilder\\trunk\\lispbuilder-sdl\\"
asdf:*central-registry*)
(pushnew "c:\\cygwin\\home\\justin\\lispbuilder\\trunk\\lispbuilder-sdl-gfx\\"
asdf:*central-registry*)
;;;; compile and load the examples and wrapper
(asdf:operate 'asdf:load-op :lispbuilder-sdl)
(asdf:operate 'asdf:load-op :lispbuilder-sdl-examples)
Justin
More information about the application-builder
mailing list