From 59d8afa26b98f2b5311703f89fbd5f4397b40a4c Mon Sep 17 00:00:00 2001 From: Chris Manghane Date: Wed, 1 Oct 2014 16:40:04 -0700 Subject: [PATCH] dashboard/env: install necessary headers for linux-386-clang LGTM=bradfitz R=bradfitz CC=golang-codereviews https://golang.org/cl/147420044 --- dashboard/env/linux-x86-clang/scripts/install-apt-deps.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dashboard/env/linux-x86-clang/scripts/install-apt-deps.sh b/dashboard/env/linux-x86-clang/scripts/install-apt-deps.sh index 5e95edf4..1382dd6a 100755 --- a/dashboard/env/linux-x86-clang/scripts/install-apt-deps.sh +++ b/dashboard/env/linux-x86-clang/scripts/install-apt-deps.sh @@ -11,7 +11,9 @@ wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | apt-key add - apt-get update apt-get install -y --no-install-recommends clang-3.5 # TODO(cmang): move these into a 386 image that derives from this one. -apt-get install -y --no-install-recommends libc6-dev-i386 +apt-get install -y --no-install-recommends libc6-dev-i386 gcc-multilib +# Remove gcc binary so it doesn't interfere with clang +rm -f /usr/bin/gcc # For interacting with the Go source & subrepos: apt-get install -y --no-install-recommends mercurial git-core