aboutsummaryrefslogtreecommitdiff
path: root/dashboard/env/linux-x86-gccgo/scripts/install-apt-deps.sh
blob: 4ce05574e982ae1695f98b7daa5d49db40b9cbf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
set -ex

apt-get update
# For using numeric libraries within GCC.
apt-get install -y --no-install-recommends libgmp10-dev libmpc-dev libmpfr-dev
# For building binutils and gcc from source.
apt-get install -y --no-install-recommends make g++ flex bison
# For running the extended gccgo testsuite
apt-get install -y --no-install-recommends dejagnu

apt-get clean
rm -rf /var/lib/apt/lists