diff options
-rw-r--r-- | Source/cmake.cxx | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 6c9e568..340ee32 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -36,8 +36,26 @@ #include <stdio.h> +#ifdef __APPLE__ +#include <sys/types.h> +#include <sys/time.h> +#include <sys/resource.h> +#endif + cmake::cmake() { +#ifdef __APPLE__ + struct rlimit rlp; + if(!getrlimit(RLIMIT_STACK, &rlp)) + { + if(rlp.rlim_cur != rlp.rlim_max) + { + rlp.rlim_cur = rlp.rlim_max; + setrlimit(RLIMIT_STACK, &rlp); + } + } +#endif + m_Local = false; m_Verbose = false; m_InTryCompile = false; |