Refs #696. Turn off stack limit setting on Linux.

I cannot reproduce SEGFAULT of lapack-test with default stack size
on ARM Linux.
This commit is contained in:
Zhang Xianyi 2016-02-24 14:18:39 -05:00
parent 74b0672223
commit 6b85dbb6dc
1 changed files with 2 additions and 1 deletions

View File

@ -1365,7 +1365,8 @@ void CONSTRUCTOR gotoblas_init(void) {
gotoblas_memory_init();
#endif
#if defined(OS_LINUX)
//#if defined(OS_LINUX)
#if 0
struct rlimit curlimit;
if ( getrlimit(RLIMIT_STACK, &curlimit ) == 0 )
{