* configure.ac: Raise HEAPSIZE value for 32-bit builds on Windows.

This commit is contained in:
Juanma Barranquero 2014-06-01 23:27:53 +02:00
parent cc30429078
commit 89187af1bd
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
2014-06-01 Juanma Barranquero <lekktu@gmail.com>
* configure.ac (C_HEAP_SWITCH): Raise HEAPSIZE value for 32-bit
builds on Windows.
2014-05-29 Paul Eggert <eggert@cs.ucla.edu>
* configure.ac (pthread_sigmask): Look in LIB_PTHREAD too (Bug#17561).
@ -23,7 +28,7 @@
2014-05-27 Fabrice Popineau <fabrice.popineau@gmail.com>
* 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.

View file

@ -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