You will probably find a solution by talking to the sbcl folks.
However, I can't resist another shot, as I think your situation may
have a simpler solution :-)

> I removed my system sbcl (it was compiled without threads)
>
> apt-get remove sbcl

So you're using Debian or derivative. The first sbcl you installed
*did not* have threads. Then you tried to compile an sbcl with
threads, with the lambda below.

> 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)))
>

AFAIK, you do not need to do this since you are already on a well-
supported platform (linux) .. and it may have affected things?

> 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.

To successfully build sbcl you need an existing well-tested lisp
(afaik).

My advice would be to just delete anything you've already installed,
and download the *binary version* of sbcl, unzip it, and run
install.sh -- everything should be fine.

Binary versions available here: http://www.sbcl.org/platform-table.html

What type of linux are you on?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to