Setting Up A Development Environment For Common Lisp Minara

| No Comments | No TrackBacks

Install sbcl

sudo apt-get install sbcl

Install flexichain using asdf-install

sudo sbcl

(require :asdf)
(require :asdf-install)
(asdf-install:install :flexichain)
(quit)

Install cl-opengl from its darcs repository

cd ~/.sbcl
mkdir site
cd site
darcs get http://common-lisp.net/project/cffi/darcs/cffi/
darcs get http://www.common-lisp.net/project/cl-opengl/darcs/cl-opengl/
cd ..
mkdir systems
cd systems
ln -s ../site/cl-opengl/*asd .
ln -s ../site/cffi/*asd .

Test loading the libraries

sbcl

(require 'asdf)
(asdf:operate 'asdf:load-op 'flexichain)
(asdf:operate 'asdf:load-op 'cl-opengl)

No TrackBacks

TrackBack URL: http://robmyers.org/mt/mt-tb.cgi/4323

Leave a comment

About this Entry

This page contains a single entry by Rob Myers published on December 7, 2007 11:13 PM.

Two Common Errors was the previous entry in this blog.

Practical Common Lisp is the next entry in this blog.

Find recent content on the main index or look in the archives to find all content.