From 3434edc731e4602891a9cf6418ec4e5ff2f60830 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 9 Jun 2018 21:14:04 +0300 Subject: [PATCH] Enlarge DUMPED_HEAP_SIZE for 64-bit Windows builds * src/w32heap.c (DUMPED_HEAP_SIZE): Bump to 23MB. Reported by Andy Moreton . --- src/w32heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/w32heap.c b/src/w32heap.c index a3f87bfc7e6..df79f8c2cef 100644 --- a/src/w32heap.c +++ b/src/w32heap.c @@ -116,7 +116,7 @@ typedef struct _RTL_HEAP_PARAMETERS { to build only the first bootstrap-emacs.exe with the large size, and reset that to a lower value afterwards. */ #if defined _WIN64 || defined WIDE_EMACS_INT -# define DUMPED_HEAP_SIZE (22*1024*1024) +# define DUMPED_HEAP_SIZE (23*1024*1024) #else # define DUMPED_HEAP_SIZE (13*1024*1024) #endif -- 2.11.4.GIT