From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark Aufflick Newsgroups: gmane.emacs.devel Subject: Re: random crashing with bootstrap emacs (cvs) under solaris (SunOS 5.8) Date: Fri, 17 Feb 2006 10:08:13 +1100 Message-ID: <1242f34a0602161508s77937fabv5ec79a50b5f04507@mail.gmail.com> References: <20060216033750.24390.qmail@mail.tsm32.com> <20060216132239.GB1251@flame.pc> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1140157587 3039 80.91.229.2 (17 Feb 2006 06:26:27 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 17 Feb 2006 06:26:27 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Feb 17 07:26:24 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F9z4O-0002Kx-4k for ged-emacs-devel@m.gmane.org; Fri, 17 Feb 2006 07:26:20 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F9z0w-0004Hw-8k for ged-emacs-devel@m.gmane.org; Fri, 17 Feb 2006 01:22:46 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1F9sGa-0002gy-9T for emacs-devel@gnu.org; Thu, 16 Feb 2006 18:10:28 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1F9sF4-0001QJ-UB for emacs-devel@gnu.org; Thu, 16 Feb 2006 18:08:56 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F9sER-0000cr-9q for emacs-devel@gnu.org; Thu, 16 Feb 2006 18:08:16 -0500 Original-Received: from [64.233.184.207] (helo=wproxy.gmail.com) by monty-python.gnu.org with esmtp (Exim 4.52) id 1F9sJf-0001QF-9T for emacs-devel@gnu.org; Thu, 16 Feb 2006 18:13:39 -0500 Original-Received: by wproxy.gmail.com with SMTP id i6so12686wra for ; Thu, 16 Feb 2006 15:08:13 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=IbYxLeLWU6wvae9xxndUxnEM9IYCG5ccE/cbfi6HhO4YEtt6AxoPRglaN2l6hPutWkVXCWpcGPjbsGf1suJcup422afD3tuZ0nxayRh8v99qZL4xRH2LMDxyqtR2dJ4ya/wG/2s8jVZnn8zyh+NpCJ04/dOx3hWSj1ICuGaA7ug= Original-Received: by 10.65.155.11 with SMTP id h11mr567524qbo; Thu, 16 Feb 2006 15:08:13 -0800 (PST) Original-Received: by 10.65.239.11 with HTTP; Thu, 16 Feb 2006 15:08:13 -0800 (PST) Original-To: Giorgos Keramidas In-Reply-To: <20060216132239.GB1251@flame.pc> Content-Disposition: inline X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:50643 Archived-At: On 2/17/06, Giorgos Keramidas wrote: > > Are you using CFLAGS that include one of -fast or -xarch=3DFOO > where FOO enables 64-bit ELF binaries? > > I've been building cvs-emacs on Solaris 10 amd64 and sparc, but > only as a 32-bit binary and without -fast. Enabling either -fast > (on any architecture) or -xarch=3D{amd64,v9a} results in random > crashes here too. I'm using gcc, so it would be -mcpu=3Dv9 to force a 64 bit compile. To check I did: $ find . -name 'Makefile' |xargs egrep 'v9|mcpu|xarch|v9|fast' which only matched a few lines relating to make bootfast. And sure enough: $ file emacs-22.0.50.1 emacs-22.0.50.1: ELF 32-bit MSB executable SPARC Version 1, dynamically linked, not stripped So that's not it. But it got me hoping! Cheers, Mark.