[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master b911b4b: Enable --with-wide-int build on 32-bit Cyg
From: |
Ken Brown |
Subject: |
[Emacs-diffs] master b911b4b: Enable --with-wide-int build on 32-bit Cygwin |
Date: |
Mon, 19 Oct 2015 20:59:12 +0000 |
branch: master
commit b911b4b25db93c8b574a5dc6f1258893b4aa18c4
Author: Ken Brown <address@hidden>
Commit: Ken Brown <address@hidden>
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.
---
src/sheap.c | 8 --------
1 files changed, 0 insertions(+), 8 deletions(-)
diff --git a/src/sheap.c b/src/sheap.c
index 58a6a0b..106b279 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/>. */
#include <unistd.h>
-#ifdef __x86_64__
#ifdef ENABLE_CHECKING
#define STATIC_HEAP_SIZE (28 * 1024 * 1024)
#else
#define STATIC_HEAP_SIZE (19 * 1024 * 1024)
#endif
-#else /* x86 */
-#ifdef ENABLE_CHECKING
-#define STATIC_HEAP_SIZE (18 * 1024 * 1024)
-#else
-#define STATIC_HEAP_SIZE (13 * 1024 * 1024)
-#endif
-#endif /* x86 */
int debug_sheap = 0;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master b911b4b: Enable --with-wide-int build on 32-bit Cygwin,
Ken Brown <=