Hi.

"Fours, Dmitri" <[email protected]> schrieb am Thu, 9 Mar 2017 23:59:21 
+0000:
> I have got the following error when
> trying to use the srfi1 library in
> the interpreter:
> 
> (module foo (library srfi1))
> 
> *** ERROR:bigloo:
> `segmentation violation' exception -- raised
> 
> Compiled and tested on Linux Debian amd64, with bigloo-4.3a-latest and 
> bigloo-4.2c.

In addition, the library loading examples for the interpreter
from manual section "28.4 library and repl" adjusted to bigloo's srfi1
library (for testing purposes) do not work:

(module my-repl
  (eval (library srfi1))
  (library srfi1))
(let ((dummy fourth))
  (repl))

(module my-repl)
(let ((dummy fourth))
  (eval ’(library-load srfi1))
  (repl))

Ciao
Sven

Reply via email to