From 54547cabd338e0bac365ba9fc3d36d11cc89ca7f Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Sun, 29 Nov 2009 23:24:23 +0100 Subject: [PATCH] 1Gb memory limit for 32bits systems --- src/c/main.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/c/main.d b/src/c/main.d index d2c799977..2cd1ca2bb 100644 --- a/src/c/main.d +++ b/src/c/main.d @@ -82,7 +82,7 @@ static cl_fixnum option_values[ECL_OPT_LIMIT+1] = { 16*1024, /* ECL_OPT_C_STACK_SAFETY_AREA */ 1, /* ECL_OPT_SIGALTSTACK_SIZE */ #if ECL_FIXNUM_BITS <= 32 - 512*1024*1024, /* ECL_OPT_HEAP_SIZE */ + 1024*1024*1024, /* ECL_OPT_HEAP_SIZE */ #else 4024*1024*1024, /* ECL_OPT_HEAP_SIZE */ #endif