From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Alexander Klimov Newsgroups: gmane.emacs.devel Subject: temacs: (require cl) while preparing to dump Date: Thu, 13 Dec 2007 10:59:24 +0200 (IST) Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Trace: ger.gmane.org 1197536391 10634 80.91.229.12 (13 Dec 2007 08:59:51 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 13 Dec 2007 08:59:51 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Thu Dec 13 10:00:02 2007 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 1J2jvF-0003tq-PG for ged-emacs-devel@m.gmane.org; Thu, 13 Dec 2007 10:00:02 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J2jux-0007FH-DV for ged-emacs-devel@m.gmane.org; Thu, 13 Dec 2007 03:59:43 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1J2jus-0007Eu-FY for emacs-devel@gnu.org; Thu, 13 Dec 2007 03:59:38 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1J2jup-0007Bv-AI for emacs-devel@gnu.org; Thu, 13 Dec 2007 03:59:38 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1J2juo-0007Bd-Nr for emacs-devel@gnu.org; Thu, 13 Dec 2007 03:59:34 -0500 Original-Received: from www.eitan.edu ([199.203.54.24] helo=eitan.edu) by monty-python.gnu.org with smtp (Exim 4.60) (envelope-from ) id 1J2juo-0000tW-8T for emacs-devel@gnu.org; Thu, 13 Dec 2007 03:59:34 -0500 Original-Received: (qmail 12625 invoked from network); 13 Dec 2007 08:59:24 -0000 Original-Received: from unknown (HELO localhost) (127.0.0.1) by localhost with SMTP; 13 Dec 2007 08:59:24 -0000 X-detected-kernel: by monty-python.gnu.org: Solaris 9 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:85124 Archived-At: Hi. I try to bootstrap current CVS version on cygwin. During bootstrap it goes as follows [...] ./temacs --batch --load loadup bootstrap Loading loadup.el (source)... [...] Finding pointers to doc strings... Finding pointers to doc strings...done Dumping under the name emacs Static heap usage: 11745936 of 12582912 bytes 67548 pure bytes used mv -f emacs.exe bootstrap-emacs.exe [...] echo Directories: $wins; \ EMACSLOADPATH=/tmp/emacs-cvs/lisp ../src/bootstrap-emacs.exe -batch [...] Directories: [...] and bootstrap-emacs is stuck consuming 50% CPU on dual core. Trying to investigate (gdb does not allow to see where it is actually stuck) I found that while on Linux $ ./temacs --batch --load loadup 2>&1 | wc -l gives 123 on cygwin $ ./temacs --batch --load loadup gives only Loading loadup.el (source)... Using load-path (/tmp/emacs-cvs/lisp) Loading emacs-lisp/byte-run (source)... Loading emacs-lisp/backquote (source)... Loading subr (source)... Loading version.el (source)... Loading widget (source)... Loading custom (source)... Loading emacs-lisp/map-ynp (source)... Loading cus-start (source)... Loading international/mule (source)... Loading international/mule-conf.el (source)... Loading env (source)... (require cl) while preparing to dump Any idea? -- Regards, ASK