From: Russ Cox Date: Tue, 10 Nov 2009 07:12:09 +0000 (-0800) Subject: in addition to bison, need to have gcc and c libraries installed. X-Git-Tag: weekly.2009-11-10~9 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c9ac862aab2554280acff80a91d503de2b927576;p=gostls13.git in addition to bison, need to have gcc and c libraries installed. R=r http://go/go-review/1024043 --- diff --git a/doc/install.html b/doc/install.html index 01d617d5df..029eb7734e 100644 --- a/doc/install.html +++ b/doc/install.html @@ -154,13 +154,14 @@ $ hg clone http://r45/ $GOROOT

Install Go

-

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, +

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 Xcode. +On Linux,

-$ sudo apt-get install bison
+$ sudo apt-get install bison gcc libc6-dev