From: Chris Gianelloni Date: Mon, 12 Sep 2005 17:17:21 +0000 (+0000) Subject: Changing default CHOST for x86 from i386-pc-linux to i686-pc-linux. For discussion... X-Git-Tag: CATALYST_2_0_6_916~657 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=04b6e6aaf26db3578aed3a005ae548ed684e81da;p=catalyst.git Changing default CHOST for x86 from i386-pc-linux to i686-pc-linux. For discussion, see bug #88777. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@837 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index 37365c26..a01fe51a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.329 2005/09/12 15:31:56 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.330 2005/09/12 17:17:21 wolf31o2 Exp $ + + 12 Sep 2005; Chris Gianelloni arch/x86.py: + Changing default CHOST for x86 from i386-pc-linux to i686-pc-linux. For + discussion, see bug #88777. 12 Sep 2005; Chris Gianelloni AUTHORS, +arch/sh.py, modules/generic_stage_target.py: diff --git a/arch/x86.py b/arch/x86.py index de321527..39071f7e 100644 --- a/arch/x86.py +++ b/arch/x86.py @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/arch/x86.py,v 1.18 2005/09/06 21:37:05 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/arch/x86.py,v 1.19 2005/09/12 17:17:21 wolf31o2 Exp $ import builder,os from catalyst_support import * @@ -22,7 +22,7 @@ class arch_x86(generic_x86): def __init__(self,myspec): generic_x86.__init__(self,myspec) self.settings["CFLAGS"]="-O2 -mcpu=i686" - self.settings["CHOST"]="i386-pc-linux-gnu" + self.settings["CHOST"]="i686-pc-linux-gnu" class arch_i386(generic_x86): def __init__(self,myspec):