From: Chris Gianelloni Date: Mon, 23 Jan 2006 23:09:51 +0000 (+0000) Subject: Changed mcpu to mtune since mcpu is deprecated on GCC 3.4 and above. X-Git-Tag: CATALYST_2_0_6_916~456 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=57eedc9d40b62fe422b40189076f7b0335087636;p=catalyst.git Changed mcpu to mtune since mcpu is deprecated on GCC 3.4 and above. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1038 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index 2ac47dfa..68a27087 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.523 2006/01/20 20:25:18 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.524 2006/01/23 23:09:51 wolf31o2 Exp $ + + 23 Jan 2006; Chris Gianelloni arch/x86.py: + Changed mcpu to mtune since mcpu is deprecated on GCC 3.4 and above. 20 Jan 2006; Chris Gianelloni catalyst: This is 2.0_rc20. diff --git a/arch/x86.py b/arch/x86.py index bc9ab508..60065d25 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.22 2006/01/03 14:55:11 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/arch/x86.py,v 1.23 2006/01/23 23:09:51 wolf31o2 Exp $ import builder,os from catalyst_support import * @@ -21,7 +21,7 @@ class arch_x86(generic_x86): "builder class for generic x86 (386+)" def __init__(self,myspec): generic_x86.__init__(self,myspec) - self.settings["CFLAGS"]="-O2 -mcpu=i686 -pipe" + self.settings["CFLAGS"]="-O2 -mtune=i686 -pipe" self.settings["CHOST"]="i386-pc-linux-gnu" class arch_i386(generic_x86):