I have first upgraded SBCL installation on my Archlinux (64bit):
=======================================================================
$ sudo pacman -Sy sbcl
resolving dependencies...
looking for inter-conflicts...
Targets (1): sbcl-1.0.46-1
Total Download Size: 9.91 MB
Total Installed Size: 75.34 MB
Proceed with installation? [Y/n]
:: Retrieving packages from extra...
sbcl-1.0.46-1-x86_64 9.9M 1806.7K/s 00:00:06
[##################] 100%
checking package integrity...
(1/1) checking for file
conflicts [##################]
100%
(1/1) upgrading
sbcl
[##################] 100%
=======================================================================
Starting qi dropped me into debugger:
=======================================================================
$ qi
This is SBCL 1.0.46, an implementation of ANSI Common Lisp.
More information about SBCL is available at <
http://www.sbcl.org/>.
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
fatal error encountered in SBCL pid 9682(tid 140737353930496):
can't load .core for different runtime, sorry
Welcome to LDB, a low-level debugger for the Lisp runtime environment.
ldb>
=======================================================================
Trying to recompile Qi with the new version of SBCL:
$ cd /usr/local/QiII/Lisp
$ sbcl
This is SBCL 1.0.46, an implementation of ANSI Common Lisp.
More information about SBCL is available at <
http://www.sbcl.org/>.
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
* (load "install.lsp")
; compiling file "/usr/local/QiII1.07/Lisp/
features_load_1.lsp" (written 06 JUL 2009 09:12:20 PM):
; compiling (IN-PACKAGE :qi)
; compiling (PROCLAIM (QUOTE #))
; compiling (DEFUN waffle-off ...)
...
...
; /usr/local/QiII1.07/Lisp/export_load21.fasl written
; compilation finished in 0:00:00.005
[undoing binding stack and other enclosing state... done]
[saving current Lisp image into Qi.core:
writing 6352 bytes from the read-only space at 0x20000000
writing 4064 bytes from the static space at 0x20100000
writing 152698880 bytes from the dynamic space at 0x1000000000
done]
=======================================================================
$ qi
This is SBCL 1.0.46, an implementation of ANSI Common Lisp.
More information about SBCL is available at <
http://www.sbcl.org/>.
SBCL is free software, provided as is, with absolutely no warranty.
It is mostly in the public domain; some portions are provided under
BSD-style licenses. See the CREDITS and COPYING files in the
distribution for more information.
=======================================================================
It worked for me!
Regards
Nik
On 22 Feb., 15:36, Thomas Bartscher <
thomas.bartsc...@googlemail.com>
wrote: