From 80fc1e2c4a8954d0d6a93da2544399a95b5d53d1 Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Sun, 28 Oct 2018 16:08:29 -0700 Subject: [PATCH] Reduce default heap size for 32-bit systems. During build was getting sporadic "unable to mmap heap" errors. --- src/microcode/option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/microcode/option.c b/src/microcode/option.c index 96a2b1c9f..576edf33a 100644 --- a/src/microcode/option.c +++ b/src/microcode/option.c @@ -236,7 +236,7 @@ Additional options may be supported by the band (and described below).\n\ # if SIZEOF_UNSIGNED_LONG == 8 # define DEFAULT_HEAP_SIZE 16384 # else -# define DEFAULT_HEAP_SIZE 4096 +# define DEFAULT_HEAP_SIZE 3072 # endif #endif -- 2.25.1