Gentoo Archives: gentoo-doc-cvs

From: Josh Saddler <nightmorph@××××××××××××.org>
To: gentoo-doc-cvs@l.g.o
Subject: [gentoo-doc-cvs] cvs commit: gcc-optimization.xml
Date: Fri, 27 Jul 2007 17:34:59
Message-Id: E1IETi9-000537-JN@stork.gentoo.org
1 nightmorph 07/07/27 17:34:45
2
3 Modified: gcc-optimization.xml
4 Log:
5 oops, dunno how march for sparc snuck in, sorry. should have been mcpu. thanks to gustovoz for reporting on irc
6
7 Revision Changes Path
8 1.6 xml/htdocs/doc/en/gcc-optimization.xml
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?rev=1.6&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?rev=1.6&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo/xml/htdocs/doc/en/gcc-optimization.xml?r1=1.5&r2=1.6
13
14 Index: gcc-optimization.xml
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v
17 retrieving revision 1.5
18 retrieving revision 1.6
19 diff -u -r1.5 -r1.6
20 --- gcc-optimization.xml 1 Jul 2007 21:02:14 -0000 1.5
21 +++ gcc-optimization.xml 27 Jul 2007 17:34:45 -0000 1.6
22 @@ -1,6 +1,6 @@
23 <?xml version='1.0' encoding='UTF-8'?>
24
25 -<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v 1.5 2007/07/01 21:02:14 nightmorph Exp $ -->
26 +<!-- $Header: /var/cvsroot/gentoo/xml/htdocs/doc/en/gcc-optimization.xml,v 1.6 2007/07/27 17:34:45 nightmorph Exp $ -->
27
28 <!DOCTYPE guide SYSTEM "/dtd/guide.dtd">
29
30 @@ -22,8 +22,8 @@
31 <!-- See http://creativecommons.org/licenses/by-sa/2.5 -->
32 <license/>
33
34 -<version>1.2</version>
35 -<date>2007-07-01</date>
36 +<version>1.3</version>
37 +<date>2007-07-27</date>
38
39 <chapter>
40 <title>Introduction</title>
41 @@ -195,11 +195,11 @@
42 </pre>
43
44 <p>
45 -Here's another one for a 64-bit Sparc CPU:
46 +Here's another one for a 64-bit AMD CPU:
47 </p>
48
49 -<pre caption="/etc/make.conf: Sparc">
50 -CFLAGS="-march=ultrasparc"
51 +<pre caption="/etc/make.conf: AMD64">
52 +CFLAGS="-march=athlon64"
53 CXXFLAGS="${CFLAGS}"
54 </pre>
55
56 @@ -211,8 +211,8 @@
57 which processor features will be used when compiling code; it is a better
58 choice. <c>-mcpu</c> will produce much more generic code less optimized for your
59 machine. <c>-mtune</c> is even more generic than <c>-mcpu</c>. Whenever
60 -possible, use <c>-march</c>. For some less common architectures such as PowerPC
61 -and Alpha, <c>-mcpu</c> must be used.
62 +possible, use <c>-march</c>. For some less common architectures such as PowerPC,
63 +Sparc, and Alpha, <c>-mcpu</c> must be used.
64 </p>
65
66 <note>
67
68
69
70 --
71 gentoo-doc-cvs@g.o mailing list