标签:style blog http color os 使用 ar strong sp
从源代码编译安装
安装gcc工具,因为golang有些功能是使用c写的,所以构建golang的编译是必须的
apt-get install bison gawk gcc libc6-dev make
安装mercurial工具,目的使用hg命令来提取golang的源代码
apt-get install mercurial
代取提取,如果您的网速比较慢的话,此步要多花点时间
cd /usr/local hg clone -r release https://go.googlecode.com/hg/ go
编译golang
cd go/src
./all.bash
配置系统环境
export GOROOT=/usr/local/go export GOARCH=386 export GOOS=linux export GOBIN=$GOROOT/bin/ export PATH=$PATH:$GOBIN
标签:style blog http color os 使用 ar strong sp
原文地址:http://www.cnblogs.com/saintaxl/p/4024162.html