Search found 538 matches
- Sun Feb 22, 2009 5:39 pm
- Forum: Common Lisp
- Topic: Some SBCL Windows binaries
- Replies: 4
- Views: 10979
Re: Some SBCL Windows binaries
Just a friendly reminder that SBCL still has a handful of known bugs on MSWin. Supposedly they aren't terribly hard to fix, and require no lisp knowledge. Just a willingness to learn some x86 assembly and MSWin internals.
- Mon Feb 16, 2009 10:07 am
- Forum: Common Lisp
- Topic: sbcl on windows XP
- Replies: 7
- Views: 14677
Re: sbcl on windows XP
thanks nuntius, so do you think I should try getting in contact with Alastair Bridgewater? As for other implementations, my tutor suggested using Allegro CL for a windows OS. I'm unsure how to get it running though... If you have time to dig in and fix this, then Alistair would be happy to show you...
- Sun Feb 15, 2009 7:00 pm
- Forum: Common Lisp
- Topic: sbcl on windows XP
- Replies: 7
- Views: 14677
Re: sbcl on windows XP
After it is built, SBCL does not need (or even use) an external C compiler. The word I have is that SBCL on MSWin is 90+% done. There's just a couple known (but significant) problems that prevent it from being fully usable. The original developer, Alastair Bridgewater, never used MSWin as his primar...
- Sun Feb 15, 2009 6:46 pm
- Forum: Common Lisp
- Topic: Lispsnippets.org
- Replies: 5
- Views: 9693
Re: Lispsnippets.org
Q: How is this better/different than http://paste.lisp.org?
- Sat Feb 14, 2009 9:42 pm
- Forum: Common Lisp
- Topic: Auto documentation for lisp?(output html, prefered)
- Replies: 15
- Views: 28789
- Wed Feb 04, 2009 6:04 pm
- Forum: Common Lisp
- Topic: Installing ASDF on CLISP-Win32?
- Replies: 3
- Views: 8767
Re: Installing ASDF on CLISP-Win32?
Do you need asdf-install or just asdf? If the latter, then drop all the asdf-install stuff from your rc file...
- Tue Feb 03, 2009 8:45 am
- Forum: Common Lisp
- Topic: Google Maps
- Replies: 0
- Views: 7177
Google Maps
Some people have started registering their locations with Google Maps; feel free to join them. Common Lisp: http://maps.google.com/maps/ms?msa=0&msid=114830829398919898492.000461fa38297b8417186 Clojure: http://maps.google.com/maps/ms?msa=0&msid=112691912540601337884.00045972a1deb8de0d96b For...
- Sun Feb 01, 2009 7:06 pm
- Forum: Common Lisp
- Topic: [Newbie] Help needed for basic problem
- Replies: 8
- Views: 18571
Re: [Newbie] Help needed for basic problem
Sorry; my first reply was botched; I wrote DO but used the syntax for DOLIST.
Here's a simple, non-broken example of DO iterating over a list.
Here's a simple, non-broken example of DO iterating over a list.
Code: Select all
(let ((list (list 1 2 3)))
(do ((x list (cdr x)))
((not x))
(print (car x))))
- Sat Jan 31, 2009 8:24 pm
- Forum: Common Lisp
- Topic: [Newbie] Help needed for basic problem
- Replies: 8
- Views: 18571
Re: [Newbie] Help needed for basic problem
(let ((min most-positive-fixnum))
(do (x list)
(when (> x min)
...)))
(do (x list)
(when (> x min)
...)))
- Sat Jan 31, 2009 1:22 am
- Forum: Common Lisp
- Topic: (load filename) vs sbcl filename?
- Replies: 1
- Views: 7550
Re: (load filename) vs sbcl filename?
You are calling SBCL with the wrong command line. Try "sbcl --load file" or "sbcl --script file" (newer sbcl only).
See the manual for more details.
http://www.sbcl.org/manual/Command-Line-Options.html
See the manual for more details.
http://www.sbcl.org/manual/Command-Line-Options.html