> I removed my system sbcl (it was compiled without threads) > > apt-get remove sbcl > > then download sbcl source, have created file > customize-target-features.lisp with standard content: > > (lambda (features) > (flet ((enable (x) > (pushnew x features)) > (disable (x) > (setf features (remove x features)))) > ;; Threading support, available only on x86/x86-64 Linux, x86 Solaris > ;; and x86 Mac OS X (experimental). > (enable :sb-thread))) > > and run "sh make.sh" from user and "sh install.sh" from root. If I am > not mistaken, there was no error message at all during compilation > time.
Hi, Am I missing something or shouldn't you just install sbcl as in Weblocks installation manual (http://weblocks.viridian-project.de/installation): ./clbuild compile-implementation sbcl (and of course you have to run ./clbuild lisp to access compiled sbcl) version 1.0.31.1 seems to work fine when installed in such manner. Best regards, Tomek Lipski --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "weblocks" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/weblocks?hl=en -~----------~----~----~----~------~----~------~--~---
