1
0
mirror of https://github.com/rancher/os.git synced 2025-08-30 03:56:17 +00:00

Setup up golang for netgo

This commit is contained in:
Darren Shepherd 2015-03-18 08:27:00 -07:00
parent 2d10153c7e
commit b5ed2e3542

View File

@ -8,5 +8,10 @@ apt-get update
apt-get install -y curl rsync build-essential syslinux xorriso libblkid-dev libmount-dev libselinux1-dev
if [ ! -d /usr/local/go ]; then
curl -sL https://storage.googleapis.com/golang/go1.4.1.linux-amd64.tar.gz | tar xvzf - -C /usr/local
GO_VERSION=1.4.2
curl -sSL https://golang.org/dl/go${GO_VERSION}.src.tar.gz | tar -v -C /usr/local -xz
cd /usr/local/go/src && ./make.bash --no-clean 2>&1
PATH=/usr/local/go/bin:${PATH}
go clean -i net
go install -tags netgo std
fi