From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: YAMAMOTO Mitsuharu Newsgroups: gmane.emacs.devel Subject: Re: The bootstrap of Emacs on Cygwin is broken [Is also: unicode branch is merged to trunk] Date: Wed, 28 May 2008 12:21:57 +0900 Organization: Faculty of Science, Chiba University Message-ID: References: <47A381C7.3000003@alice.it> <47A4C54D.5000602@alice.it> <47A4DEC0.8040406@alice.it> <47A5872A.2030601@alice.it> <47A62BFF.6040806@gnu.org> <47A62EBB.80404@alice.it> <47A6CF4A.9050805@alice.it> <47A6EA5D.8020707@alice.it> <47A7C57C.2050402@alice.it> <47A8367D.60803@alice.it> <17503984.post@talk.nabble.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Trace: ger.gmane.org 1211944938 4558 80.91.229.12 (28 May 2008 03:22:18 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 28 May 2008 03:22:18 +0000 (UTC) Cc: Emacs-devel@gnu.org To: Jashy Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed May 28 05:22:58 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1K1CFd-0002aU-52 for ged-emacs-devel@m.gmane.org; Wed, 28 May 2008 05:22:57 +0200 Original-Received: from localhost ([127.0.0.1]:44680 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K1CEr-0000Ec-Pw for ged-emacs-devel@m.gmane.org; Tue, 27 May 2008 23:22:09 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1K1CEn-0000ES-FZ for emacs-devel@gnu.org; Tue, 27 May 2008 23:22:05 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1K1CEl-0000ED-Jo for Emacs-devel@gnu.org; Tue, 27 May 2008 23:22:04 -0400 Original-Received: from [199.232.76.173] (port=39373 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1K1CEl-0000E8-G0 for Emacs-devel@gnu.org; Tue, 27 May 2008 23:22:03 -0400 Original-Received: from ntp.math.s.chiba-u.ac.jp ([133.82.132.2]:62961 helo=mathmail.math.s.chiba-u.ac.jp) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1K1CEl-0006mw-01 for Emacs-devel@gnu.org; Tue, 27 May 2008 23:22:03 -0400 Original-Received: from church.math.s.chiba-u.ac.jp (church [133.82.132.36]) by mathmail.math.s.chiba-u.ac.jp (Postfix) with ESMTP id AFCE92C40; Wed, 28 May 2008 12:21:57 +0900 (JST) In-Reply-To: <17503984.post@talk.nabble.com> User-Agent: Wanderlust/2.14.0 (Africa) SEMI/1.14.6 (Maruoka) FLIM/1.14.8 (=?ISO-8859-4?Q?Shij=F2?=) APEL/10.6 Emacs/23.0.50 (sparc-sun-solaris2.8) MULE/5.0 (SAKAKI) X-detected-kernel: by monty-python.gnu.org: NetBSD 3.0 (DF) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:97864 Archived-At: >>>>> On Tue, 27 May 2008 19:15:21 -0700 (PDT), Jashy said: > Seemly the patch does not enter into current emacs CVS. > I just tried the patch on Cygwin with current emacs CVS, PASS. > Angelo Graziosi-2 wrote: >> >> ======================================================== >> --- sheap.c.orig 2008-01-08 21:44:26.000000000 +0100 >> +++ sheap.c 2008-02-04 21:37:57.234375000 +0100 >> @@ -26,7 +26,11 @@ >> >> #include >> >> -#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; >> ======================================================== >> In relation to the recent "Problems preloading x-win.el" thread, the requirement for the final dump is not that big (12486816 bytes) according to: http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg00295.html http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg00360.html Only bootstrapping stage requires more room (27297952 bytes) according to: http://lists.gnu.org/archive/html/emacs-devel/2008-02/msg00362.html Could someone check how much sheap size is required if x-win.el (or some counterparts in the compilation on Cygwin) is not preloaded at the *bootstrapping stage* ? YAMAMOTO Mitsuharu mituharu@math.s.chiba-u.ac.jp