summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2006-05-17 07:08:57 +0000
committerZac Medico <zmedico@gentoo.org>2006-05-17 07:08:57 +0000
commita25ac756208465da66050aabfd3b2e2bd39f3f48 (patch)
tree8476f90cddfec6001bce214a191cd0a0a974ae7d /cnf/make.conf.ppc64.diff
parentPrint a warning message when AUTOCLEAN is disabled because it's quite dangerous. (diff)
downloadportage-idfetch-a25ac756208465da66050aabfd3b2e2bd39f3f48.tar.gz
portage-idfetch-a25ac756208465da66050aabfd3b2e2bd39f3f48.tar.bz2
portage-idfetch-a25ac756208465da66050aabfd3b2e2bd39f3f48.zip
s/mtarget/mtune/g for bug #133528.
svn path=/main/trunk/; revision=3367
Diffstat (limited to 'cnf/make.conf.ppc64.diff')
-rw-r--r--cnf/make.conf.ppc64.diff8
1 files changed, 4 insertions, 4 deletions
diff --git a/cnf/make.conf.ppc64.diff b/cnf/make.conf.ppc64.diff
index fa3f20d0..2aaec01f 100644
--- a/cnf/make.conf.ppc64.diff
+++ b/cnf/make.conf.ppc64.diff
@@ -19,7 +19,7 @@
# before reporting errors to developers.
#
-# Please refer to the GCC manual for a list of possible values.
-+# -mtarget=<cpu-type> for PowerPC64 systems instructs the gcc compiler that
++# -mtune=<cpu-type> for PowerPC64 systems instructs the gcc compiler that
+# it can use instruction scheduling specific for that type of processor
+# specified
+#
@@ -27,7 +27,7 @@
+# to optimize your code for. Code generated under those options will run best
+# on that processor.
+#
-+# -mcpu=<cpu-type> and -mtarget=<cpu-type> should both be specified
++# -mcpu=<cpu-type> and -mtune=<cpu-type> should both be specified
+#
+# GCC 3.x supports many ppc64 processor types including: power3, power4,
+# 970 (aka G5), and power5.
@@ -47,11 +47,11 @@
+# good selection.
+#
+#Example CFLAGS setting
-+#CFLAGS="-O2 -pipe -mcpu=970 -mtarget=970 -maltivec -mabi=altivec"
++#CFLAGS="-O2 -pipe -mcpu=970 -mtune=970 -maltivec -mabi=altivec"
+#
+#or
+#
-+#CFLAGS="-O2 -pipe -mcpu=power3 -mtarget=power3"
++#CFLAGS="-O2 -pipe -mcpu=power3 -mtune=power3"
#
# If you set a CFLAGS above, then this line will set your default C++ flags to
# the same settings.