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: Need review of emacs-25-merge branch Date: Wed, 30 Dec 2015 19:38:22 +0200 Message-ID: <834mezdegh.fsf@gnu.org> References: Reply-To: Eli Zaretskii NNTP-Posting-Host: plane.gmane.org X-Trace: ger.gmane.org 1451497083 23999 80.91.229.3 (30 Dec 2015 17:38:03 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 30 Dec 2015 17:38:03 +0000 (UTC) Cc: andlind@gmail.com, emacs-devel@gnu.org To: John Wiegley Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Dec 30 18:37:55 2015 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 1aEKh7-0007nj-JP for ged-emacs-devel@m.gmane.org; Wed, 30 Dec 2015 18:37:53 +0100 Original-Received: from localhost ([::1]:53268 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aEKh6-0005uf-W3 for ged-emacs-devel@m.gmane.org; Wed, 30 Dec 2015 12:37:52 -0500 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:59656) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aEKgu-0005u3-5q for emacs-devel@gnu.org; Wed, 30 Dec 2015 12:37:41 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aEKgq-0000Ve-Vf for emacs-devel@gnu.org; Wed, 30 Dec 2015 12:37:40 -0500 Original-Received: from fencepost.gnu.org ([2001:4830:134:3::e]:57176) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aEKgq-0000Va-Sm; Wed, 30 Dec 2015 12:37:36 -0500 Original-Received: from 84.94.185.246.cable.012.net.il ([84.94.185.246]:1216 helo=HOME-C4E4A596F7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_128_CBC_SHA1:128) (Exim 4.82) (envelope-from ) id 1aEKgj-00048R-T5; Wed, 30 Dec 2015 12:37:36 -0500 In-reply-to: (message from John Wiegley on Tue, 29 Dec 2015 23:51:34 -0800) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e 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:197182 Archived-At: > From: John Wiegley > Cc: Eli Zaretskii > Date: Tue, 29 Dec 2015 23:51:34 -0800 > > >>>>> Anders Lindgren writes: > > > If not we need to investigate why. John, can you make sure your "emacs-25" > > branch is up to date and do a rebuild. If it still fails, can you send me > > and Eli the log? > > I did a pull and build, and the same error happened. I'm deleting all .elc > files before doing the build. The log is attached. You can see which commit > I'm on at the bottom. > > 23:48:25 Vulcan:~/.emacs.d/devel $ time nix-build ~/nixpkgs --cores 8 -A emacsHEAD I have no idea what nix-build does. Are you sure it isn't the source of the trouble? > configure flags: --disable-dependency-tracking --prefix=/nix/store/cgkpd0zwm4mypw45rr0dq9lx58ndm8pj-emacs-HEAD --with-ns --disable-ns-self-contained The --disable-dependency-tracking switch is another suspect; why do you use it? > Loading term/common-win... > Loading international/ucs-normalize.el (source)... > Eager macro-expansion failure: (error "(require cl-lib) while preparing to dump") > Eager macro-expansion failure: (error "(require cl-lib) while preparing to dump") > (require cl-lib) while preparing to dump > Makefile:519: recipe for target 'emacs' failed ucs-normalize.el shouldn't be loaded in source form at this stage, it should have been byte-compiled already. My crystal balls says that it doesn't appear in src/lisp.mk, most probably because you run a partial build, where the rule that updates lisp.mk is somehow bypassed (perhaps because of the --disable-dependency-tracking switch, or maybe something else, like maybe nix-build, whatever that is, doesn't faithfully emulate GNU Make, or doesn't run GNU Make if it's supposed to). If nothing else helps, I suggest a "make bootstrap" from the shell command line, and make sure your 'make' command is a GNU Make.