all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Bootstrap failure on 64bit Windows
@ 2015-07-10 10:00 Andy Moreton
  2015-07-10 13:00 ` Eli Zaretskii
  0 siblings, 1 reply; 2+ messages in thread
From: Andy Moreton @ 2015-07-10 10:00 UTC (permalink / raw)
  To: emacs-devel


Bootstrapping a 64bit Windows build (msys2 mingw64) failed this morning:

    dumped_data_commit: memory exhausted.
    Enlarge dumped_data[]!

The following patch fixes this:

diff --git a/src/w32heap.c b/src/w32heap.c
index 47ffec1c3038..ec5b04119bfd 100644
--- a/src/w32heap.c
+++ b/src/w32heap.c
@@ -115,7 +115,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 (19*1024*1024)
+# define DUMPED_HEAP_SIZE (20*1024*1024)
 #else
 # define DUMPED_HEAP_SIZE (12*1024*1024)
 #endif

Bootstrapping a 32bit windows build (msys mingw) is ok with the original
size.

    AndyM




^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: Bootstrap failure on 64bit Windows
  2015-07-10 10:00 Bootstrap failure on 64bit Windows Andy Moreton
@ 2015-07-10 13:00 ` Eli Zaretskii
  0 siblings, 0 replies; 2+ messages in thread
From: Eli Zaretskii @ 2015-07-10 13:00 UTC (permalink / raw)
  To: Andy Moreton; +Cc: emacs-devel

> From: Andy Moreton <andrewjmoreton@gmail.com>
> Date: Fri, 10 Jul 2015 11:00:15 +0100
> 
> 
> Bootstrapping a 64bit Windows build (msys2 mingw64) failed this morning:
> 
>     dumped_data_commit: memory exhausted.
>     Enlarge dumped_data[]!
> 
> The following patch fixes this:

Thanks, pushed.



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-07-10 13:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-10 10:00 Bootstrap failure on 64bit Windows Andy Moreton
2015-07-10 13:00 ` Eli Zaretskii

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.