aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKen Brown2015-10-19 16:53:22 -0400
committerKen Brown2015-10-19 16:58:09 -0400
commitb911b4b25db93c8b574a5dc6f1258893b4aa18c4 (patch)
treee22ea71104edda56b9fe65d7a81780ee3eeb8148 /src
parentaa3afdbb79c1a13542afd3691957c5231de04b00 (diff)
downloademacs-b911b4b25db93c8b574a5dc6f1258893b4aa18c4.tar.gz
emacs-b911b4b25db93c8b574a5dc6f1258893b4aa18c4.zip
Enable --with-wide-int build on 32-bit Cygwin
* src/sheap.c (STATIC_HEAP_SIZE): Remove distinction between x86 and x86_64 to enable --with-wide-int build on 32-bit Cygwin.
Diffstat (limited to 'src')
-rw-r--r--src/sheap.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/sheap.c b/src/sheap.c
index 58a6a0b1cd3..106b2790367 100644
--- a/src/sheap.c
+++ b/src/sheap.c
@@ -25,19 +25,11 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
25 25
26#include <unistd.h> 26#include <unistd.h>
27 27
28#ifdef __x86_64__
29#ifdef ENABLE_CHECKING 28#ifdef ENABLE_CHECKING
30#define STATIC_HEAP_SIZE (28 * 1024 * 1024) 29#define STATIC_HEAP_SIZE (28 * 1024 * 1024)
31#else 30#else
32#define STATIC_HEAP_SIZE (19 * 1024 * 1024) 31#define STATIC_HEAP_SIZE (19 * 1024 * 1024)
33#endif 32#endif
34#else /* x86 */
35#ifdef ENABLE_CHECKING
36#define STATIC_HEAP_SIZE (18 * 1024 * 1024)
37#else
38#define STATIC_HEAP_SIZE (13 * 1024 * 1024)
39#endif
40#endif /* x86 */
41 33
42int debug_sheap = 0; 34int debug_sheap = 0;
43 35