nightmorph 07/10/13 14:54:03 Modified: gcc-optimization.xml Log: typo fix; should have been mcpu that is deprecated. not sure how i missed this. use mtune and march on x86 and x86-64, not mcpu.
Revision Changes Path 1.10 xml/htdocs/doc/en/gcc-optimization.xml file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?rev=1.10&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?rev=1.10&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?r1=1.9&r2=1.10 Index: gcc-optimization.xml =================================================================== RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- gcc-optimization.xml 13 Aug 2007 00:57:57 -0000 1.9 +++ gcc-optimization.xml 13 Oct 2007 14:54:03 -0000 1.10 @@ -1,6 +1,6 @@ <?xml version='1.0' encoding='UTF-8'?> -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v 1.9 2007/08/13 00:57:57 nightmorph Exp $ --> +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v 1.10 2007/10/13 14:54:03 nightmorph Exp $ --> <!DOCTYPE guide SYSTEM "/dtd/guide.dtd"> @@ -222,7 +222,7 @@ you need to generate code for older CPUs such as i386 and i486. <c>-mtune</c> produces more generic code than <c>-march</c>; though it will tune code for a certain CPU, it doesn't take into account available instruction sets and ABI. -Don't use <c>-mtune</c> on x86 or x86-64 systems, as it is deprecated for those +Don't use <c>-mcpu</c> on x86 or x86-64 systems, as it is deprecated for those arches. </p> -- [EMAIL PROTECTED] mailing list
