summaryrefslogtreecommitdiff
path: root/cnf
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-14 19:27:26 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-14 19:27:26 +0000
commit4a83448f66528770d3f39e08f00287eb6ec29253 (patch)
tree74c8d0aec00b813c5294e785960421180494f482 /cnf
parentBug #262365 - Make the "portage.internal" category (prepalldocs check) a (diff)
downloadportage-idfetch-4a83448f66528770d3f39e08f00287eb6ec29253.tar.gz
portage-idfetch-4a83448f66528770d3f39e08f00287eb6ec29253.tar.bz2
portage-idfetch-4a83448f66528770d3f39e08f00287eb6ec29253.zip
Add make.conf for amd64-fbsd submitted by Timothy Redaelli <drizzt@g.o>.
svn path=/main/trunk/; revision=13113
Diffstat (limited to 'cnf')
-rw-r--r--cnf/make.conf.amd64-fbsd.diff61
1 files changed, 61 insertions, 0 deletions
diff --git a/cnf/make.conf.amd64-fbsd.diff b/cnf/make.conf.amd64-fbsd.diff
new file mode 100644
index 00000000..1ad4854f
--- /dev/null
+++ b/cnf/make.conf.amd64-fbsd.diff
@@ -0,0 +1,61 @@
+--- make.conf 2006-03-19 18:40:11.000000000 +0100
++++ make.conf.amd64-fbsd 2006-03-19 18:26:21.000000000 +0100
+@@ -23,6 +23,11 @@
+ # Example:
+ #USE="X gtk gnome -alsa"
+
++# Host Setting
++# ============
++#
++CHOST="x86_64-gentoo-freebsd7.1"
++
+ # Host and optimization settings
+ # ==============================
+ #
+@@ -33,10 +38,35 @@
+ # package (and in some cases the libraries it uses) at default optimizations
+ # before reporting errors to developers.
+ #
+-# Please refer to the GCC manual for a list of possible values.
++# -mcpu=<cpu-type> means optimize code for the particular type of CPU without
++# breaking compatibility with other CPUs. GCC 3.4 has deprecated support for
++# -mcpu, so use -mtune instead if using this compiler.
++#
++# -march=<cpu-type> means to take full advantage of the ABI and instructions
++# for the particular CPU; this will break compatibility with older CPUs (for
++# example, -march=athlon-xp code will not run on a regular Athlon, and
++# -march=i686 code will not run on a Pentium Classic.)
++#
++# CPU types supported in gcc-3.2 and higher: athlon-xp, athlon-mp,
++# athlon-tbird, athlon, k6, k6-2, k6-3, i386, i486, i586 (Pentium), i686
++# (PentiumPro), pentium, pentium-mmx, pentiumpro, pentium2 (Celeron),
++# pentium3, and pentium4.
++#
++# Note that Gentoo Linux 1.4 and higher include at least gcc-3.2.
++#
++# amd64 CPU types supported in gcc-3.4: athlon64, opteron, k8
++#
++# CRITICAL WARNINGS: ****************************************************** #
++# K6 markings are deceptive. Avoid setting -march for them. See Bug #24379. #
++# Pentium-M CPU's should not enable sse2 until at least gcc-3.4. Bug 50616. #
++# GCC 3.3 doesnt support an amd64 specific -march setting, use 3.4. #
++# ************************************************************************* #
+ #
+-#CFLAGS="-O2 -pipe"
++# Decent examples:
+ #
++#CFLAGS="-mtune=k8 -O2 -pipe"
++#CFLAGS="-march=athlon64 -O2 -pipe"
++
+ # If you set a CFLAGS above, then this line will set your default C++ flags to
+ # the same settings.
+ #CXXFLAGS="${CFLAGS}"
+@@ -61,7 +91,7 @@
+ # DO NOT PUT ANYTHING BUT YOUR SPECIFIC ~ARCHITECTURE IN THE LIST.
+ # IF YOU ARE UNSURE OF YOUR ARCH, OR THE IMPLICATIONS, DO NOT MODIFY THIS.
+ #
+-#ACCEPT_KEYWORDS="~arch"
++#ACCEPT_KEYWORDS="~amd64-fbsd"
+
+ # Portage Directories
+ # ===================