From 024432e583d570067a2b3131f842a3717b3046c5 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sat, 23 Sep 2023 14:20:54 +0800 Subject: [PATCH] Enlarge dumped_data * src/w32heap.c (DUMPED_HEAP_SIZE): Increase to 24 MiB, the bare minimum necessary to build a 32-bit Emacs. --- src/w32heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/w32heap.c b/src/w32heap.c index 628fc28e3c5..96881c3923d 100644 --- a/src/w32heap.c +++ b/src/w32heap.c @@ -123,7 +123,7 @@ typedef struct _RTL_HEAP_PARAMETERS { # if defined _WIN64 || defined WIDE_EMACS_INT # define DUMPED_HEAP_SIZE (28*1024*1024) # else -# define DUMPED_HEAP_SIZE (18*1024*1024) +# define DUMPED_HEAP_SIZE (24*1024*1024) # endif #endif -- 2.39.5