From owner-freebsd-ppc@FreeBSD.ORG Thu Dec 11 10:01:06 2008 Return-Path: Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CFF7B106564A for ; Thu, 11 Dec 2008 10:01:06 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: from ik-out-1112.google.com (ik-out-1112.google.com [66.249.90.181]) by mx1.freebsd.org (Postfix) with ESMTP id 634BC8FC1C for ; Thu, 11 Dec 2008 10:01:06 +0000 (UTC) (envelope-from yanefbsd@gmail.com) Received: by ik-out-1112.google.com with SMTP id c21so289650ika.3 for ; Thu, 11 Dec 2008 02:01:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=7Kj8bREJcSVHuSIiENySQLsrdRSQsSEqcsy7Z1hH/cI=; b=pHJJcQV5fxFdNBCmneSGJu/jvWQpWQTgjC4YrBoYzu6xNEyqUNooQlbcVNCfiP7o2q 7aIjS9A/pAWMMhhg0By50vYOQOoZ6INwcqAgPQRV8N83N6+lYrRm+6KgBhtbhHcuKef9 DQwb/hVC4nL9qDOS+06bVw0sz/Zvncv5k0Uoo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=I5nmbOQqjyuPRbEdXCuVGTcXIlWSsaDosAsNtLGd9e+jpOhyBtRpwEB8hz/5cyycBO l9vpY7ENfrlB3v7kDzWGCEsRJTOjhPUgGlahq9P/FhoYIb9E19vwB/8gmp/+dO6jo8yK ujnYF++7JiH28NQgExO3OvY3jLZkL8qnf87x8= Received: by 10.66.250.1 with SMTP id x1mr4772472ugh.4.1228987897258; Thu, 11 Dec 2008 01:31:37 -0800 (PST) Received: by 10.67.22.7 with HTTP; Thu, 11 Dec 2008 01:31:37 -0800 (PST) Message-ID: <7d6fde3d0812110131p13ae3076r301c708774834b7e@mail.gmail.com> Date: Thu, 11 Dec 2008 01:31:37 -0800 From: "Garrett Cooper" To: "=?ISO-8859-1?Q?Horst_G=FCnther_Burkhardt_III?=" In-Reply-To: <1228931995.1832.81.camel@horst-tla> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline References: <1228910881.1832.63.camel@horst-tla> <20081210141039.GA52605@narn.knownspace> <1228920872.1832.67.camel@horst-tla> <1228931995.1832.81.camel@horst-tla> Cc: FreeBSD PowerPC ML Subject: Re: Two issues. One minor, one major. X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 Dec 2008 10:01:06 -0000 On Wed, Dec 10, 2008 at 9:59 AM, Horst G=FCnther Burkhardt III wrote: > Another thing I forgot: for those brave enough to look at this problem : > the entire session log can be found at http://rafb.net/p/MOTbHY26.html > relating to the failure of python25 to build. Any help would be greatly > appreciated. > > I'm completely stumped as to the cause of this odd error. > > ktrace and kdump links available: > ktrace : http://midcom.unlogicnetworks/tmpfiles/python-compileall-trace.= txt.bz2 > kdump -f: http://midcom.unlogicnetworks/tmpfiles/python-compileall-kdump.= txt.bz2 > Hopefully these will help unearth what went wrong to some extent. > > Is there anything further I can provide to assist with diagnosing the pro= blem? (It has been suggested that this is an upstream bug perhaps.) > > Thanks again, > -- Horst. Why are you using mcpu and mtune directly? You can use CPUTYPE, e.g.: CPUTYPE :=3D nocona (Replace nocona with 7400 8-)...) I did a quick google search and while -mcpu=3D7400 and -mtune=3D7400 doesn't necessarily imply -maltivec, I would ask the GCC folks whether or not that is truly the case. Or a quicker means to determine if that is the problem is to use mcpu=3Dcommon (or a known working 32-bit ppc arch) and see whether or not you run across the same error. -Garrett