When you try to install CLML on SBCL, you might encounter the blow problem.
COMMON-LISP:SIMPLE-TYPE-ERROR : CLML.LAPACK-ENVIRONMENT::DYNAMIC-HEAP-SPACE-TOO-SMALL does not designate a condition class.
この理由は実行環境のメモリ不足です。
This reason is too small memory size of lisp execution environment.
以下で解決できます。
The solution is below:
$ sbcl --dynamic-space-size 4gb
デフォルトでSBCLは1GBです。これは、CLMLをコンパイルするには少なすぎます。
Default SBCL memory size is 1gb . It's too small to compile CLML on SBCL.
2 件のコメント:
Thanks a lot. On windows, is there some similar way to enlarge the available memory size for SBCL?
Hello tas s,
Yes, you can use same option on sbcl-win :)
コメントを投稿