On 9/18/19 2:50 PM, Ralf Hemmecke wrote: > Hi Qian, > > you are a hero. THANK YOU!!! > > I've now increased the number of processors of the VM to 4 and the > compilation succeeded. > > That doesn't, of course, deal with the actual bug, but as you suggested, > the best we can do is to report that problem to the sbcl developers.
I did a git bisect, this bug is caused by sbcl commit c63557933adae1f6a46250056a8ba53bfb7ead02, I think this part is relevant: "Also move TUNE-IMAGE-FOR-DUMP into DEINIT so that any compiling caused by user code as a consequence of calling *save-hooks* is done first." See https://github.com/sbcl/sbcl/commit/c63557933adae1f6a46250056a8ba53bfb7ead02 they move "(tune-image-for-dump)" inside "(deinit)", which is after "#+sb-thread (finalizer-thread-stop)". If we move "(tune-image-for-dump)" before "#+sb-thread (finalizer-thread-stop)", then there is no problem. This is very strange after all, and I will report to sbcl developers soon. -- 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/0e9dff55-b49e-f7d6-f39e-a94dfee7fb86%40gmail.com.
