From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Glenn Morris Newsgroups: gmane.emacs.bugs Subject: bug#11669: 24.1; Build failure on amd64 with x32 ABI Date: Mon, 11 Jun 2012 02:46:00 -0400 Message-ID: References: <20436.63644.849695.332693@a1i15.kph.uni-mainz.de> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1339397196 9383 80.91.229.3 (11 Jun 2012 06:46:36 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Mon, 11 Jun 2012 06:46:36 +0000 (UTC) Cc: 11669@debbugs.gnu.org To: Ulrich Mueller Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Mon Jun 11 08:46:35 2012 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1SdyOX-0008S3-Pk for geb-bug-gnu-emacs@m.gmane.org; Mon, 11 Jun 2012 08:46:33 +0200 Original-Received: from localhost ([::1]:32892 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SdyOX-0006ys-Jm for geb-bug-gnu-emacs@m.gmane.org; Mon, 11 Jun 2012 02:46:33 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:36830) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SdyOU-0006yd-Jh for bug-gnu-emacs@gnu.org; Mon, 11 Jun 2012 02:46:31 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SdyOS-0000sl-AW for bug-gnu-emacs@gnu.org; Mon, 11 Jun 2012 02:46:30 -0400 Original-Received: from debbugs.gnu.org ([140.186.70.43]:55933) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SdyOS-0000sf-0b for bug-gnu-emacs@gnu.org; Mon, 11 Jun 2012 02:46:28 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.72) (envelope-from ) id 1SdyQv-000734-Vo for bug-gnu-emacs@gnu.org; Mon, 11 Jun 2012 02:49:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Glenn Morris Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 11 Jun 2012 06:49:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 11669 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch Original-Received: via spool by 11669-submit@debbugs.gnu.org id=B11669.133939732027065 (code B ref 11669); Mon, 11 Jun 2012 06:49:01 +0000 Original-Received: (at 11669) by debbugs.gnu.org; 11 Jun 2012 06:48:40 +0000 Original-Received: from localhost ([127.0.0.1]:37246 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SdyQZ-00072T-WE for submit@debbugs.gnu.org; Mon, 11 Jun 2012 02:48:40 -0400 Original-Received: from fencepost.gnu.org ([208.118.235.10]:43902) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1SdyQX-00072J-2R for 11669@debbugs.gnu.org; Mon, 11 Jun 2012 02:48:38 -0400 Original-Received: from rgm by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1SdyO0-000646-CU; Mon, 11 Jun 2012 02:46:00 -0400 X-Spook: BLU-114/B munitions Aladdin counter terrorism Nazi Ruby X-Ran: @x3=cy=mJ%Yr/q+~lTm05rqs5"QNu*6K"#qB (Ulrich Mueller's message of "Sun, 10 Jun 2012 21:42:20 +0200") User-Agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 140.186.70.43 X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.bugs:60858 Archived-At: Ulrich Mueller wrote: > + AC_CHECK_DECL([__ILP32__], [machfile="m/intel386.h"]) emacs-24's configure.in already attempts to deal with this kind of thing: ## Although we're running on an amd64 kernel, we're actually compiling for ## the x86 architecture. The user should probably have provided an ## explicit --build to `configure', but if everything else than the kernel ## is running in i386 mode, we can help them out. if test "$machine" = "amdx86-64"; then AC_CHECK_DECL([i386]) if test "$ac_cv_have_decl_i386" = "yes"; then canonical=`echo "$canonical" | sed -e 's/^amd64/i386/' -e 's/^x86_64/i386/'` machine=intel386 machfile="m/${machine}.h" fi fi So I guess you don't define i386 but rather __ILP32__ for some reason? However, the src/m files have been removed in the trunk and the above piece of configure with it. http://lists.gnu.org/archive/html/emacs-diffs/2012-05/msg00352.html I don't know what, if anything, replaces it. Is passing an explicit --build to configure now the recommended/only way to deal with this?