[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch
From: |
Eli Zaretskii |
Subject: |
Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk] |
Date: |
Tue, 05 Feb 2008 22:17:52 +0200 |
> Date: Tue, 05 Feb 2008 11:12:13 +0100
> From: Angelo Graziosi <address@hidden>
> CC: address@hidden, address@hidden, address@hidden
>
> -#define STATIC_HEAP_SIZE (12 * 1024 * 1024)
> +#ifdef CYGWIN
> + #define STATIC_HEAP_SIZE (32 * 1024 * 1024)
> +#else
> + #define STATIC_HEAP_SIZE (12 * 1024 * 1024)
> +#endif
>
> int debug_sheap = 0;
> ========================================================
>
> (Eli, if you object that things as "#ifdef CYGWIN" should go to
> cygwin.h, observe the sheap.c yet contains an "#ifdef CYGWIN sbrk...")
Actually, I wonder why do you need "#ifdef CYGWIN" at all: sheap.c is
compiled _only_ for the Cygwin build (see src/Makefile.in). It looks
like you can change the above line unconditionally.
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], (continued)
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Angelo Graziosi, 2008/02/04
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Eli Zaretskii, 2008/02/04
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Angelo Graziosi, 2008/02/05
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Jason Rumney, 2008/02/05
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Angelo Graziosi, 2008/02/05
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Jason Rumney, 2008/02/05
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Angelo Graziosi, 2008/02/05
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk],
Eli Zaretskii <=
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Angelo Graziosi, 2008/02/05
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Eli Zaretskii, 2008/02/05
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Angelo Graziosi, 2008/02/06
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Angelo Graziosi, 2008/02/05
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Eli Zaretskii, 2008/02/03
- Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Jason Rumney, 2008/02/04
Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk], Dan Nicolaescu, 2008/02/02