From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Juanma Barranquero Newsgroups: gmane.emacs.devel Subject: Re: Checkout of Emacs CVS through firewall Date: Fri, 11 Jun 2004 11:04:57 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <20040611105509.5F85.JMBARRANQUERO@wke.es> References: <20040611103511.5F7F.JMBARRANQUERO@wke.es> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1086944742 28145 80.91.224.253 (11 Jun 2004 09:05:42 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 11 Jun 2004 09:05:42 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Fri Jun 11 11:05:33 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BYhyf-0001v3-00 for ; Fri, 11 Jun 2004 11:05:33 +0200 Original-Received: from lists.gnu.org ([199.232.76.165]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BYhyf-0002G9-00 for ; Fri, 11 Jun 2004 11:05:33 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BYhzO-0001Xk-Ef for emacs-devel@quimby.gnus.org; Fri, 11 Jun 2004 05:06:18 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1BYhzH-0001XV-M1 for emacs-devel@gnu.org; Fri, 11 Jun 2004 05:06:11 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1BYhzG-0001XJ-81 for emacs-devel@gnu.org; Fri, 11 Jun 2004 05:06:11 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1BYhzG-0001XG-50 for emacs-devel@gnu.org; Fri, 11 Jun 2004 05:06:10 -0400 Original-Received: from [62.22.181.117] (helo=idefix.laley.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1BYhy6-0007AW-FR; Fri, 11 Jun 2004 05:04:58 -0400 Original-Received: from [172.17.221.23] (JMBARRANQUERO [172.17.221.23]) by idefix.laley.net with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2655.55) id LSNJ7HYJ; Fri, 11 Jun 2004 11:04:11 +0200 Original-To: Miles Bader In-Reply-To: X-Mailer: Becky! ver. 2.08.01 [en] X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:24825 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:24825 On Fri, 11 Jun 2004 17:51:19 +0900 Miles Bader wrote: > > lib-src/obj-spd > [... etc ...] > > What is "obj-spd"? On Windows, the directory for object files can be called: oo # GCC build, non-opt oo-spd # GCC build, optimized obj # MSVC build, non-opt obj-spd # MSVC build, optimized I don't know why, but I imagine it's to ease testing patches on both compilers. > There's not much I can do about platform-specific build noise... Noise is not a problem. This was, I think: These explicit ids have no corresponding file: lisp/.arch-ids/Makefile.in.id Duplicated ids among each group of files listed here: lib-src/ctags.c i_8a9b748d-390c-4922-99db-2eeefa921051 lib-src/etags.c In Un*x environments ctags.c is a link to etags.c, I think; on Windows, ctags.c is copied from etags.c. > [All this is the same annoying crap that has to be done for "clean" > rules; you can see why people like separate build dirs...] Yes, I understand why. But my use case is a bit different. I build Emacs fairly often, either normal make or bootstrap (in fact I bootstrap at least daily, just to check that it works), and I never do a release tarball or pass my build to other people. So it is *much* faster for me to build in place; I avoid a lot of copying 'round (it also saves me disk space, but that is moot). Juanma