From: Chris Hanson Date: Sun, 13 Dec 2009 05:53:01 +0000 (-0800) Subject: Use much larger default heap size on 64-bit machines. X-Git-Tag: 20100708-Gtk~213 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=67e684d7ba53f3c46011d176faf0243097a8a2e4;p=mit-scheme.git Use much larger default heap size on 64-bit machines. --- diff --git a/src/microcode/option.c b/src/microcode/option.c index 3d88fb119..544fe79c7 100644 --- a/src/microcode/option.c +++ b/src/microcode/option.c @@ -209,7 +209,11 @@ Additional options may be supported by the band (and described below).\n\ #endif #ifndef DEFAULT_HEAP_SIZE -# define DEFAULT_HEAP_SIZE 4096 +# if SIZEOF_UNSIGNED_LONG == 8 +# define DEFAULT_HEAP_SIZE 16384 +# else +# define DEFAULT_HEAP_SIZE 4096 +# fi #endif #ifndef HEAP_SIZE_VARIABLE