1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-03-07 06:22:32 -08:00

Enlarge DUMPED_HEAP_SIZE

* src/w32heap.c (DUMPED_HEAP_SIZE) [_WIN64 || WIDE_EMACS_INT]:
Enlarge to 21MB.  Reported by Richard Copley <rcopley@gmail.com>.
This commit is contained in:
Eli Zaretskii 2016-11-05 10:21:23 +02:00
parent 44c34c2ed3
commit ebaf39e3f2

View file

@ -114,7 +114,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 (20*1024*1024)
# define DUMPED_HEAP_SIZE (21*1024*1024)
#else
# define DUMPED_HEAP_SIZE (12*1024*1024)
#endif