mirror of
https://github.com/golang/go
synced 2024-11-19 07:54:43 -07:00
afc3bf64c0
LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/132590043
15 lines
527 B
Bash
Executable File
15 lines
527 B
Bash
Executable File
set -ex
|
|
|
|
apt-get update
|
|
# For running curl to get the hg starter tarballs (faster than hg clone).
|
|
apt-get install -y --no-install-recommends curl ca-certificates
|
|
# For building Go's bootstrap 'dist' prog
|
|
apt-get install -y --no-install-recommends gcc libc6-dev
|
|
# For interacting with the Go source & subrepos:
|
|
apt-get install -y --no-install-recommends mercurial git-core
|
|
# For 32-bit nacl:
|
|
apt-get install -y --no-install-recommends libc6-i386 libc6-dev-i386 lib32stdc++6 gcc-multilib
|
|
|
|
apt-get clean
|
|
rm -fr /var/lib/apt/lists
|