I use an Eclipse plug-in called CUSP
http://bitfauna.com/projects/cusp/
So far it is working out great.
The back-end is SBCL
kib2 wrote:When I look at projects like PLT-Scheme, there's a great multiplateform IDE, and no problems to install it: you just have to code.
Now, going to Common Lisp, you either have a choice between Emacs+Slime and you'll have to spent hours on to configure them for a newbie, and proprietary tools like Allegro or LispWorks (yes, with restricted free versions) why ?
(pushnew "path/to/the/library/dir/" asdf:*central-registry* :test #'equalp)(load "c:/usr/unpacked/lisp-libs/setup-asdf-registry.lisp");; load asdf
#+(or ecl sbcl) (require 'asdf)
#-(or ecl sbcl)
(load "/usr/unpacked/lisp-libs/asdf/asdf")
;; register all the libraries
;; provided that all them are unpacked
;; into directory "/usr/unpacked/lisp-libs/"
(flet
((reg (relative-path)
(pushnew (concatenate 'string "/usr/unpacked/lisp-libs/"
relative-path)
asdf:*central-registry*
:test #'equalp)))
(reg "alexandria/")
(reg "anaphora-0.9.3/")
...
(reg "zip/"))
Users browsing this forum: No registered users and 1 guest