]> Cypherpunks repositories - gostls13.git/commitdiff
in addition to bison, need to have gcc and c libraries installed.
authorRuss Cox <rsc@golang.org>
Tue, 10 Nov 2009 07:12:09 +0000 (23:12 -0800)
committerRuss Cox <rsc@golang.org>
Tue, 10 Nov 2009 07:12:09 +0000 (23:12 -0800)
R=r
http://go/go-review/1024043

doc/install.html

index 01d617d5df16fb12d56cb52ec96185aeadb871e9..029eb7734ec32b8334184ab15a4927bc4769d719 100644 (file)
@@ -154,13 +154,14 @@ $ hg clone http://r45/ $GOROOT
 
 <h2>Install Go</h2>
 
-<p>You need to have the parser generator Bison installed.
-It is installed as part of Xcode on OS X.
-If you need it on Linux,
+<p>The Go tool chain is written in C.  To build it, you need
+to have  GCC, the standard C libraries, and the parser generator Bison
+installed.  On OS X, they can be installed as part of <a href="http://developer.apple.com/TOOLS/Xcode/">Xcode</a>.
+On Linux, 
 </p>
 
 <pre>
-$ sudo apt-get install bison
+$ sudo apt-get install bison gcc libc6-dev
 </pre>
 
 <p>