From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: MS-Windows build using Posix configury Date: Sat, 20 Apr 2013 21:30:06 +0300 Message-ID: <83a9otys0h.fsf@gnu.org> References: <83d2tu49lu.fsf@gnu.org> <8338un359j.fsf@gnu.org> <831ua72fml.fsf@gnu.org> <83ehe51zi4.fsf@gnu.org> <837gjx1vpx.fsf@gnu.org> Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1366482620 28986 80.91.229.3 (20 Apr 2013 18:30:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 20 Apr 2013 18:30:20 +0000 (UTC) Cc: emacs-devel@gnu.org To: Dani Moncayo Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Apr 20 20:30:24 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UTcYJ-0004tn-9B for ged-emacs-devel@m.gmane.org; Sat, 20 Apr 2013 20:30:23 +0200 Original-Received: from localhost ([::1]:49635 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UTcYI-0007OK-P5 for ged-emacs-devel@m.gmane.org; Sat, 20 Apr 2013 14:30:22 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:45618) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UTcYE-0007Nw-Ld for emacs-devel@gnu.org; Sat, 20 Apr 2013 14:30:20 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UTcYD-00073Y-U2 for emacs-devel@gnu.org; Sat, 20 Apr 2013 14:30:18 -0400 Original-Received: from mtaout20.012.net.il ([80.179.55.166]:62313) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UTcYD-00072p-Lt for emacs-devel@gnu.org; Sat, 20 Apr 2013 14:30:17 -0400 Original-Received: from conversion-daemon.a-mtaout20.012.net.il by a-mtaout20.012.net.il (HyperSendmail v2007.08) id <0MLK00200GOCE300@a-mtaout20.012.net.il> for emacs-devel@gnu.org; Sat, 20 Apr 2013 21:30:16 +0300 (IDT) Original-Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout20.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0MLK0020HGQF4C80@a-mtaout20.012.net.il>; Sat, 20 Apr 2013 21:30:16 +0300 (IDT) In-reply-to: X-012-Sender: halo1@inter.net.il X-detected-operating-system: by eggs.gnu.org: Solaris 10 X-Received-From: 80.179.55.166 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:159062 Archived-At: > Date: Sat, 20 Apr 2013 19:18:31 +0200 > From: Dani Moncayo > Cc: Emacs development discussions > > Checking c:/emacs/build/leim/quail/ARRAY30.el ... > Checking c:/emacs/build/leim/quail/4Corner.el ... > > > I see no new input after a good while, and when I look at the task > manager, I see a process called "bootstrap-emacs.exe" that is taking a > constant portion of 25% of the CPU time. > > I've cancelled the build process after more than 47 minutes. :( I think I see the problem. Try replacing this line from leim/Makefile.in: --eval "(update-leim-list-file \".\" \"${srcdir}\")" ; \ with this: --eval "(update-leim-list-file \".\" (reveal-filename \"${srcdir}\"))" ; \ and also add the following function to subr.el: (defun reveal-filename (file) "Produce the real file name for FILE. On systems other than MS-Windows, just returns FILE. On MS-Windows, converts /d/foo/bar form of file names passed by MSYS Make into d:/foo/bar that Emacs can grok. This function is called from lisp/Makefile." (when (and (eq system-type 'windows-nt) (string-match "\\`/[a-zA-Z]/" file)) (setq file (concat (substring file 1 2) ":" (substring file 2)))) file)