Hey,
I do not get the Slime REPL back after I start the webserver
(hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242))
I am using the latest Slime from CVS. SBCL 1.0.29 x86-64 on MBP with snow leopard.
It works with Allegro 8.1.
Am I missing something trivial here?
thanks for the help,
regards quasi
Check global variable *features* It should have :sb-thread in the list of features.
If not, you will need to compile sbcl from the source with threads enabled.
andy
On Fri, Nov 6, 2009 at 2:43 PM, quasi quasilists@gmail.com wrote:
Hey,
I do not get the Slime REPL back after I start the webserver
(hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242))
I am using the latest Slime from CVS. SBCL 1.0.29 x86-64 on MBP with snow leopard.
It works with Allegro 8.1.
Am I missing something trivial here?
thanks for the help,
regards quasi
tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel
On Fri, Nov 06, 2009 at 11:13:15PM +0530, quasi wrote:
Hey,
I do not get the Slime REPL back after I start the webserver
(hunchentoot:start (make-instance 'hunchentoot:acceptor :port 4242))
I am using the latest Slime from CVS. SBCL 1.0.29 x86-64 on MBP with snow leopard.
It works with Allegro 8.1.
Am I missing something trivial here?
Did you compile SBCL with thread support?
Zach
On Sat, Nov 7, 2009 at 12:01 AM, Zach Beane xach@xach.com wrote:
Am I missing something trivial here?
Did you compile SBCL with thread support?
eeek. I was using the 1.0.29 binaries without thread support. :( my bad. sorry.
thanks! quasi