From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Miles Bader Newsgroups: gmane.emacs.devel Subject: emacs build failure on today's debian Date: Wed, 15 Jun 2011 17:52:19 +0900 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1308128008 24105 80.91.229.12 (15 Jun 2011 08:53:28 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 15 Jun 2011 08:53:28 +0000 (UTC) To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 15 10:53:25 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QWlqm-0000YG-D9 for ged-emacs-devel@m.gmane.org; Wed, 15 Jun 2011 10:53:24 +0200 Original-Received: from localhost ([::1]:54337 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QWlql-0001xp-BC for ged-emacs-devel@m.gmane.org; Wed, 15 Jun 2011 04:53:23 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:49817) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QWlqP-0001x3-Gw for emacs-devel@gnu.org; Wed, 15 Jun 2011 04:53:02 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QWlqO-00065S-6L for emacs-devel@gnu.org; Wed, 15 Jun 2011 04:53:01 -0400 Original-Received: from relmlor2.renesas.com ([210.160.252.172]:49458) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QWlqN-00064x-JA; Wed, 15 Jun 2011 04:52:59 -0400 Original-Received: from relmlir2.idc.renesas.com ([10.200.68.152]) by relmlor2.idc.renesas.com ( SJSMS) with ESMTP id <0LMT0048OPZ9ZX30@relmlor2.idc.renesas.com>; Wed, 15 Jun 2011 17:52:21 +0900 (JST) Original-Received: from relmlac1.idc.renesas.com ([10.200.69.21]) by relmlir2.idc.renesas.com ( SJSMS) with ESMTP id <0LMT000JAPZ9BF00@relmlir2.idc.renesas.com>; Wed, 15 Jun 2011 17:52:21 +0900 (JST) Original-Received: by relmlac1.idc.renesas.com (Postfix, from userid 0) id 45894800BE; Wed, 15 Jun 2011 17:52:21 +0900 (JST) Original-Received: from relmlac1.idc.renesas.com (localhost [127.0.0.1]) by relmlac1.idc.renesas.com (Postfix) with ESMTP id 442E7800C0; Wed, 15 Jun 2011 17:52:21 +0900 (JST) Original-Received: from relmlii2.idc.renesas.com [10.200.68.66] by relmlac1.idc.renesas.com with ESMTP id TAD08023; Wed, 15 Jun 2011 17:52:21 +0900 X-IronPort-AV: E=Sophos;i="4.65,369,1304262000"; d="scan'208";a="32229040" Original-Received: from unknown (HELO relay31.aps.necel.com) ([10.29.19.54]) by relmlii2.idc.renesas.com with ESMTP; Wed, 15 Jun 2011 17:52:21 +0900 Original-Received: from relay31.aps.necel.com ([10.29.19.54] [10.29.19.54]) by relay31.aps.necel.com with ESMTP; Wed, 15 Jun 2011 17:52:21 +0900 Original-Received: from dhlpc061 ([10.114.96.212] [10.114.96.212]) by relay31.aps.necel.com with ESMTP; Wed, 15 Jun 2011 17:52:21 +0900 Original-Received: by dhlpc061 (Postfix, from userid 31295) id 929E852E1F6; Wed, 15 Jun 2011 17:52:20 +0900 (JST) System-Type: x86_64-unknown-linux-gnu Blat: Foop Original-Lines: 31 X-detected-operating-system: by eggs.gnu.org: Solaris 10 (1203?) X-Received-From: 210.160.252.172 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:140480 Archived-At: $ make ... make[1]: Entering directory `/usr/local/build/emacs/master/src' make[1]: *** No rule to make target `/usr/lib/crt1.o', needed by `temacs'. Stop. make[1]: Leaving directory `/usr/local/build/emacs/master/src' make: *** [src] Error 2 make: Leaving directory `/usr/local/build/emacs/master' $ locate crt1 | grep /usr/lib /usr/lib/x86_64-linux-gnu/Mcrt1.o /usr/lib/x86_64-linux-gnu/Scrt1.o /usr/lib/x86_64-linux-gnu/crt1.o /usr/lib/x86_64-linux-gnu/gcrt1.o It seems pretty dodgy that Emacs is directly looking for these files at all, but oh well, I guess it's some messiness related to dumping. If it needs to use them, though, isn't there a less brittle way to find out where they are? For instance, this seems to work with gcc (starting with gcc 4.3): $ gcc -print-file-name=crt1.o /usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.6.1/../../../crt1.o Thanks, -Miles -- Somebody has to do something, and it's just incredibly pathetic that it has to be us. -- Jerry Garcia