emacs-devel
[Top][All Lists]
Advanced

[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: Jashy
Subject: Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk]
Date: Wed, 28 May 2008 03:20:15 -0700 (PDT)

Just tried 
#define STATIC_HEAP_SIZE       (25 * 1024 * 1024)  works
but 
#define STATIC_HEAP_SIZE       (24 * 1024 * 1024) NOT

So seemly 25 is the key number.


Angelo Graziosi-2 wrote:
> 
> 
>   #include <unistd.h>
> 
> -#define STATIC_HEAP_SIZE       (12 * 1024 * 1024)
> +#ifdef BOOT_STRAP
> +#define STATIC_HEAP_SIZE       (25 * 1024 * 1024)
> +#else
> +#define STATIC_HEAP_SIZE       (19 * 1024 * 1024)
> +#endif
> 
>   int debug_sheap = 0;
> 
> @@ -42,9 +46,7 @@
>     if (!bss_sbrk_ptr)
>       {
>         bss_sbrk_ptr = bss_sbrk_buffer;
> -#ifdef CYGWIN
>         sbrk (BLOCKSIZE);                /* force space for fork to work
> */
> -#endif
>       }
> 

-- 
View this message in context: 
http://www.nabble.com/The-bootstrap-of-Emacs-on-Cygwin-is-broken--Is-also%3A-unicode-branch-is-merged-to-trunk--tp15234948p17509540.html
Sent from the Emacs - Dev mailing list archive at Nabble.com.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]