aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Lance Taylor <iant@golang.org>2011-09-19 11:54:07 -0700
committerIan Lance Taylor <iant@golang.org>2011-09-19 11:54:07 -0700
commit5d1d040e3af871b62d78ec88ccc32c21f2a78f03 (patch)
treec829bbf9256de3e4ad4dc903a70809117d49a186
parent80700eb817a099c74fd71a9a19c3e2a7445c19df (diff)
downloadgo-5d1d040e3af871b62d78ec88ccc32c21f2a78f03.tar.gz
go-5d1d040e3af871b62d78ec88ccc32c21f2a78f03.zip
doc: when configuring gold for gccgo, use --enable-gold=default
R=golang-dev, dsymonds CC=golang-dev https://golang.org/cl/5030057
-rw-r--r--doc/gccgo_install.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/gccgo_install.html b/doc/gccgo_install.html
index 159fab7bb5..38a30e9c62 100644
--- a/doc/gccgo_install.html
+++ b/doc/gccgo_install.html
@@ -58,7 +58,7 @@ use a small discontiguous stack for goroutines. This permits programs
to run many more goroutines, since each goroutine can use a relatively
small stack. Doing this requires using a development version of
the <code>gold</code> linker. The easiest way to do this is to build
-the GNU binutils, using <code>--enable-gold</code> when you run
+the GNU binutils, using <code>--enable-gold=default</code> when you run
the <code>configure</code> script, and to
use <code>--with-ld=GOLD_BINARY</code> when you
configure <code>gccgo</code>. A typical sequence would look like
@@ -72,7 +72,7 @@ cvs -z 9 -d :pserver:anoncvs@sourceware.org:/cvs/src login
cvs -z 9 -d :pserver:anoncvs@sourceware.org:/cvs/src co binutils
mkdir binutils-objdir
cd binutils-objdir
-../src/configure --enable-gold --prefix=/opt/gold
+../src/configure --enable-gold=default --prefix=/opt/gold
make
make install
</pre>