1
0
mirror of https://github.com/golang/go synced 2024-11-22 00:34:40 -07:00

in addition to bison, need to have gcc and c libraries installed.

R=r
http://go/go-review/1024043
This commit is contained in:
Russ Cox 2009-11-09 23:12:09 -08:00
parent da776791c4
commit c9ac862aab

View 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>