You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case he hasn't, can you provide more details about what system you are trying to compile on, and what your make.inc looks like ? This is essentially a crash of one of the tests, and it is usually caused by the test code allocating some big array of test data statically, i.e. on the stack. The usual default stack size on Linux is 8192k, on other systems it may be even smaller - and the array is big enough to cause an overflow at that limit.
Depending on your system, there may be a "hard" limit for the stacksize imposed that you cannot override as a user (or if you have Java code in the mix e.g. from some IDE that uses Java, you may need other means to change the stacksize), or you
may be seeing a completely different problem than the usual "segmentation fault" that a stack overflow would result in.
I created a
make.inc
file using the example provided.When I tried to install with
make
I received the following error:As stated here
I tried the suggested solution (
ulimit -s unlimited
) but it didn't solve this error. Can anyone suggest a solution?The text was updated successfully, but these errors were encountered: