]> git.eshelyaron.com Git - emacs.git/commitdiff
Enable --with-wide-int build on 32-bit Cygwin
authorKen Brown <kbrown@cornell.edu>
Mon, 19 Oct 2015 20:53:22 +0000 (16:53 -0400)
committerKen Brown <kbrown@cornell.edu>
Mon, 19 Oct 2015 20:58:09 +0000 (16:58 -0400)
* 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

index 58a6a0b1cd3212c68fe1dafe6ddb4052f1707360..106b2790367c3d5600df29298b6dcfd843522190 100644 (file)
@@ -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;