aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gerzo <danger@FreeBSD.org>2009-09-04 14:22:47 +0000
committerDaniel Gerzo <danger@FreeBSD.org>2009-09-04 14:22:47 +0000
commit4a16f8e86d2011a789c45f1d47b223859a49e854 (patch)
tree4c4f580d4da4cdbff3370676499b7b79a37dce68
parentf55e8870fc1026709fef11992d9fd857d00b9d33 (diff)
Notes
-rw-r--r--en_US.ISO8859-1/articles/custom-gcc/article.sgml10
1 files changed, 7 insertions, 3 deletions
diff --git a/en_US.ISO8859-1/articles/custom-gcc/article.sgml b/en_US.ISO8859-1/articles/custom-gcc/article.sgml
index 31b9dfc643..dff8c716d6 100644
--- a/en_US.ISO8859-1/articles/custom-gcc/article.sgml
+++ b/en_US.ISO8859-1/articles/custom-gcc/article.sgml
@@ -110,7 +110,8 @@
appropriately):</para>
<programlisting>.if !empty(.CURDIR:M/usr/ports/*) && exists(/usr/local/bin/gcc44)
-USE_GCC=4.4
+CC=gcc44
+CXX=g++44
CPP=cpp44
.endif</programlisting>
@@ -168,7 +169,8 @@ libstdc++.so.6 gcc44/libstdc++.so.6</programlisting>
example:</para>
<programlisting>.if !empty(.CURDIR:M/usr/ports/*) && exists(/usr/local/bin/gcc44)
-USE_GCC=4.4
+CC=gcc44
+CXX=g++44
CPP=cpp44
CFLAGS+=-mssse3
.endif</programlisting>
@@ -191,7 +193,9 @@ CFLAGS+=-mssse3
<programlisting>.if !empty(.CURDIR:M/usr/ports/*) && exists(/usr/local/bin/gcc44)
.if empty(.CURDIR:M/usr/ports/net/openldap*)
-USE_GCC=4.X
+CC=gcc44
+CXX=g++44
+CPP=cpp44
.endif
.endif</programlisting>