I created a `make.inc` file using the example provided. When I tried to install with `make` I received the following error: ``` make[2]: Leaving directory '/home/csgurel/svo_install_overlay_ws/src/lapack/TESTING/LIN' Testing COMPLEX16 LAPACK linear equation routines ./LIN/xlintstz < ztest.in > ztest.out 2>&1 SEP: Testing Symmetric Eigenvalue Problem routines ./EIG/xeigtstz < sep.in > zsep.out 2>&1 Makefile:467: recipe for target 'zsep.out' failed make[1]: *** [zsep.out] Error 139 make[1]: Leaving directory '/home/csgurel/svo_install_overlay_ws/src/lapack/TESTING' Makefile:54: recipe for target 'lapack_testing' failed make: *** [lapack_testing] Error 2 ``` As stated [here](https://unix.stackexchange.com/questions/428394/lapack-make-fails-recipe-for-target-znep-out-failed-error?newreg=381839326d7c4f979798f010ad34ba23) I tried the suggested solution (`ulimit -s unlimited`) but it didn't solve this error. Can anyone suggest a solution?