nightmorph    07/07/27 17:34:45

  Modified:             gcc-optimization.xml
  Log:
  oops, dunno how march for sparc snuck in, sorry. should have been mcpu. 
thanks to gustovoz for reporting on irc

Revision  Changes    Path
1.6                  xml/htdocs/doc/en/gcc-optimization.xml

file : 
http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?r1=1.5&r2=1.6

Index: gcc-optimization.xml
===================================================================
RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- gcc-optimization.xml        1 Jul 2007 21:02:14 -0000       1.5
+++ gcc-optimization.xml        27 Jul 2007 17:34:45 -0000      1.6
@@ -1,6 +1,6 @@
 <?xml version='1.0' encoding='UTF-8'?>
 
-<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v 1.5 
2007/07/01 21:02:14 nightmorph Exp $ -->
+<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v 1.6 
2007/07/27 17:34:45 nightmorph Exp $ -->
 
 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
 
@@ -22,8 +22,8 @@
 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
 <license/>
 
-<version>1.2</version>
-<date>2007-07-01</date>
+<version>1.3</version>
+<date>2007-07-27</date>
 
 <chapter>
 <title>Introduction</title>
@@ -195,11 +195,11 @@
 </pre>
 
 <p>
-Here's another one for a 64-bit Sparc CPU:
+Here's another one for a 64-bit AMD CPU:
 </p>
 
-<pre caption="/etc/make.conf: Sparc">
-CFLAGS="-march=ultrasparc"
+<pre caption="/etc/make.conf: AMD64">
+CFLAGS="-march=athlon64"
 CXXFLAGS="${CFLAGS}"
 </pre>
 
@@ -211,8 +211,8 @@
 which processor features will be used when compiling code; it is a better
 choice. <c>-mcpu</c> will produce much more generic code less optimized for 
your
 machine. <c>-mtune</c> is even more generic than <c>-mcpu</c>. Whenever
-possible, use <c>-march</c>. For some less common architectures such as PowerPC
-and Alpha, <c>-mcpu</c> must be used.
+possible, use <c>-march</c>. For some less common architectures such as 
PowerPC,
+Sparc, and Alpha, <c>-mcpu</c> must be used.
 </p>
 
 <note>



-- 
[EMAIL PROTECTED] mailing list

Reply via email to