From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.devel Subject: Re: Parallel builds with loaddefs removed Date: Fri, 21 Jun 2013 15:20:22 -0400 Message-ID: <1xzjujnudl.fsf@fencepost.gnu.org> References: <83li63mqz6.fsf@gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1371842427 11816 80.91.229.3 (21 Jun 2013 19:20:27 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 21 Jun 2013 19:20:27 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eli Zaretskii Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Jun 21 21:20:29 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 1Uq6sm-0001DT-0h for ged-emacs-devel@m.gmane.org; Fri, 21 Jun 2013 21:20:28 +0200 Original-Received: from localhost ([::1]:39631 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uq6sl-0000Yk-Gm for ged-emacs-devel@m.gmane.org; Fri, 21 Jun 2013 15:20:27 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uq6si-0000Xs-Sx for emacs-devel@gnu.org; Fri, 21 Jun 2013 15:20:25 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Uq6si-0000FL-31 for emacs-devel@gnu.org; Fri, 21 Jun 2013 15:20:24 -0400 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:41031) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Uq6sh-0000FH-WF for emacs-devel@gnu.org; Fri, 21 Jun 2013 15:20:24 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1Uq6sg-0003dt-Lc; Fri, 21 Jun 2013 15:20:22 -0400 X-Spook: MP5K-SD genetic Israel broadside bank MD5 data haven Ron X-Ran: 4_AqkJR=DK5;i(gRr#Z<:{9!',9Nf1FIuN@wQF/GrPy/U/%6%LO~9jl\el-A=^* 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:160856 Archived-At: Eli Zaretskii wrote: > When one of the *loaddefs.el files is removed for some reason, the > very next "make -j" fails, because it sometimes compiles a file that > needs, e.g., cl-loaddefs.el before it is recreated. This happened to > me today because cl-loaddefs.el was removed from bzr, and "bzr up" > deleted it. That specific problem should be impossible now, owing to cl-lib.el's: (or (load "cl-loaddefs" 'noerror 'quiet) ;; When bootstrapping, cl-loaddefs hasn't been built yet! (require 'cl-macs)) I guess you had a stale cl-lib.elc around? So AFAICS, that's just a one-time problem, the usual sort of issue with stale elc files that we know non-bootstrap builds sometimes have.