From: Juanma Barranquero Date: Sun, 1 Jun 2014 21:27:53 +0000 (+0200) Subject: * configure.ac: Raise HEAPSIZE value for 32-bit builds on Windows. X-Git-Tag: emacs-25.0.90~2639^2~165 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=89187af1bdef9f1f0e2960e4da5f2052c654aa24;p=emacs.git * configure.ac: Raise HEAPSIZE value for 32-bit builds on Windows. --- diff --git a/ChangeLog b/ChangeLog index b6af29d19c1..5790edaa174 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-06-01 Juanma Barranquero + + * configure.ac (C_HEAP_SWITCH): Raise HEAPSIZE value for 32-bit + builds on Windows. + 2014-05-29 Paul Eggert * configure.ac (pthread_sigmask): Look in LIB_PTHREAD too (Bug#17561). @@ -23,7 +28,7 @@ 2014-05-27 Fabrice Popineau - * configure.ac (C_HEAP_SWITCH) define for different values of + * configure.ac (C_HEAP_SWITCH): Define for different values of dumped heap size depending on 32/64bits arch on Windows. Don't check for pthreads.h on MinGW32/64, it gets in the way. Use mmap(2) for buffers and system malloc for MinGW32/64. diff --git a/configure.ac b/configure.ac index e9f5099becd..61b7d3621cf 100644 --- a/configure.ac +++ b/configure.ac @@ -4841,7 +4841,7 @@ if test "${opsys}" = "mingw32"; then ## Preload heap size of temacs.exe in MB. case "$canonical" in x86_64-*-*) C_HEAP_SWITCH="-DHEAPSIZE=18" ;; - *) C_HEAP_SWITCH="-DHEAPSIZE=10" ;; + *) C_HEAP_SWITCH="-DHEAPSIZE=12" ;; esac fi