I am getting this message with hunchentoot, (most recent version as of today).
WARNING: Without thread support, this library is only useful for development.
My question, is this the normal mode of operation? Or do I really need thread support to do anything useful? Or were their flags I needed to setup on install. I am using SBCL 0.14 and I did the default install with that clisp. During the hunchentoot asdf-install, maybe there were options that I skipped over.
This is ubuntu linux 7.10; (not using apt install for sbcl or hunchentoot)
On Sat, Feb 23, 2008 at 10:25:02AM -0500, Berlin Brown wrote:
I am getting this message with hunchentoot, (most recent version as of today).
WARNING: Without thread support, this library is only useful for development.
My question, is this the normal mode of operation? Or do I really need thread support to do anything useful? Or were their flags I needed to setup on install. I am using SBCL 0.14 and I did the default install with that clisp. During the hunchentoot asdf-install, maybe there were options that I skipped over.
This is ubuntu linux 7.10; (not using apt install for sbcl or hunchentoot)
You must use a SBCL with thread support enabled. I do this by adding a file called customize-target-features.lisp in my SBCL source directory that has this in it:
(lambda (list) (pushnew :sb-thread list))
The SBCL built with that file present will have thread support, and I use that for a few different Hunchentoot sites with no problems.
Zach
I copy from http://weitz.de/hunchentoot/ Hunchentoot talks with its front-end or with the client over TCP/IP sockets and uses multiprocessing to handle several requests at the same time. Therefore, it cannot be implemented completely in portable Common Lisp. It currently works with LispWorks (which is the main development and testing platform), CMUCL (with MP support), SBCL (with Unicode and thread support), OpenMCL, and Allegro Common Lisp.
My understanding of the above is that you have to install threads to run a web server. I run CMUCL (with MP support) which works fine apart from SSL :(
Cheers -Wout -----Original Message----- From: tbnl-devel-bounces@common-lisp.net [mailto:tbnl-devel-bounces@common-lisp.net]On Behalf Of Berlin Brown Sent: zaterdag 23 februari 2008 16:25 To: tbnl-devel@common-lisp.net Subject: [hunchentoot-devel] Setting up hunchentoot,WARNING about thread support
I am getting this message with hunchentoot, (most recent version as of today).
WARNING: Without thread support, this library is only useful for development.
My question, is this the normal mode of operation? Or do I really need thread support to do anything useful? Or were their flags I needed to setup on install. I am using SBCL 0.14 and I did the default install with that clisp. During the hunchentoot asdf-install, maybe there were options that I skipped over.
This is ubuntu linux 7.10; (not using apt install for sbcl or hunchentoot)
-- Berlin Brown http://botspiritcompany.com/botlist/spring/help/about.html _______________________________________________ tbnl-devel site list tbnl-devel@common-lisp.net http://common-lisp.net/mailman/listinfo/tbnl-devel