[cl-store-devel] Error Message with newer SBCL-Versions
Matthias Parzer
m.parzer at zt-hp.at
Tue Apr 26 06:38:55 UTC 2011
I read a post about a type-error produced by newer versions of sbcl.
I could solve the problem with adding:
(declaim (notinline create-float-values))
in the file 'default-backends.lisp'. This file contains a defun
(somewhere around line 230) that is meant to be redefined by a
implementation-specific version. This technique is dangerous when used
without notinline declaration. Good compilers inline the old version
before the new version is bound to the symbol. The Lisp-specification
backs this. The bug is in cl-store.
Give it a try!
More information about the cl-store-devel
mailing list