> The second issue concerns big files (compile or read doesn't matter): > ... > --SBCL > -- >> System error: > -- Control stack exhausted (no more space for function call frames). > -- This is probably due to heavily nested or infinitely recursive function > -- calls, or a tail call that SBCL cannot or has not optimized away.
SBCL imposes limits on stack and heap size. To configure them (increase the limits), run configure before compiling Fricas like this: ./configure '--with-lisp=sbcl --control-stack-size 512 --dynamic-space-size 6000' This are, in fact, the exact options used in the Archlinux AUR package for Fricas. Warning: these limits may be too high if Fricas runs on a system with limited memory. On the other hand one may want to use even greater limits if enough memory is available (e.g., on a server computer). I guess similar adjustments may be possible for ECL. -- You received this message because you are subscribed to the Google Groups "FriCAS - computer algebra system" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/fricas-devel/d669ca75-c7c6-46da-a240-15b4f831e24b%40googlegroups.com.
