Hello,
swank-sbcl.lisp refers to the alien "linux_no_threads_p" which does not exist on my SBCL 0.8.17 (yeah, someone should probably update the ports :-/) on FreeBSD. The following patch fixes avoids this:
Regards,
Julian Stecklina der_julian@web.de writes:
swank-sbcl.lisp refers to the alien "linux_no_threads_p" which does not exist on my SBCL 0.8.17 (yeah, someone should probably update the ports :-/) on FreeBSD. The following patch fixes avoids this:
(if (and (member :sb-thread *features*)
#+linux (not (sb-alien:extern-alien "linux_no_threads_p" sb-alien:boolean)))
Have you actually managed to build sbcl on FreeBSD with :sb-thread? Does it work?
Cheers,
Christophe
Christophe Rhodes csr21@cam.ac.uk writes:
Julian Stecklina der_julian@web.de writes:
swank-sbcl.lisp refers to the alien "linux_no_threads_p" which does not exist on my SBCL 0.8.17 (yeah, someone should probably update the ports :-/) on FreeBSD. The following patch fixes avoids this:
(if (and (member :sb-thread *features*)
#+linux (not (sb-alien:extern-alien "linux_no_threads_p" sb-alien:boolean)))
Have you actually managed to build sbcl on FreeBSD with :sb-thread? Does it work?
No. I just tried 0.9.2 and the runtime does not build. For more info see the sbcl mailing list.
Regards,