A user of CL REPL on iOS reported that trying to load :cl-fad via Quicklisp simply crashes the app.
In the process of investigating the issue, I found that adding :cl-fad as an already cross-compiled library works without problems, so it seems to be related to running ASDF on the device.
Edited
Designs
Child items ...
Show closed items
Linked items 0
Link issues together to show that they're related.
Learn more.
It seems that there will be no quick solution to this issue, so I'm just considering to add a bunch of most used Quicklisp systems as cross-compiled libraries, which should work just fine.
Also, the recursion limit was already present in the old ECL 16.1.3 version, so I doubt that this will be resolved soon...
I've had a look at the backtrace you posted and from the scarce information it provides, I can't find anything wrong with it.
I guess the most likely reason for the segfault is a stack overflow from the fact that the recursion limit is so low on iOS (the backtrace you provided is already 561 frames deep which is already larger than the limit of ~300 for the trivial function above). You could try enlarging the stack size by setting the ECL_OPT_C_STACK_SIZE boot option or by calling (ext:set-limit 'ext:c-stack ...). Whether that works depends on a working setrlimit(RLIMIT_STACK, ...) which I don't know if iOS provides, but i guess it is worth a try.
Thanks, I tried to change the C stack size, both in main.cpp and at run time, and it seems that it isn't possible to change the stack size on mobile (I tried on android, too). Any value I tried was simply ignored (both on iOS and on android).
But I noticed that the default C stack size is about 10 times bigger on android, so this simply confirms the stack limits found with the above trivial recursive function.
Summarizing: there is nothing wrong with ECL and ASDF, we just need to cope with the quite small stack size on iOS and find workarounds for it (like using already cross-compiled ASDF systems, which don't need ASDF at run time).