github.com/graybobo/golang.org-package-offline-cache@v0.0.0-20200626051047-6608995c132f/x/tools/dashboard/env/linux-x86-gccgo/scripts/install-apt-deps.sh (about)

     1  set -ex
     2  
     3  apt-get update
     4  # For running curl to get the gccgo builder binary.
     5  apt-get install -y --no-install-recommends curl ca-certificates
     6  # Optionally used by some net/http tests:
     7  apt-get install -y --no-install-recommends strace
     8  # For using numeric libraries within GCC.
     9  apt-get install -y --no-install-recommends libgmp10-dev libmpc-dev libmpfr-dev
    10  # For building binutils and gcc from source.
    11  apt-get install -y --no-install-recommends make g++ flex bison
    12  # Same as above, but for 32-bit builds as well.
    13  apt-get install -y --no-install-recommends libc6-dev-i386 g++-multilib
    14  # For running the extended gccgo testsuite
    15  apt-get install -y --no-install-recommends dejagnu
    16  # For interacting with the gccgo source and git mirror:
    17  apt-get install -y --no-install-recommends mercurial git-core
    18  
    19  apt-get clean
    20  rm -rf /var/lib/apt/lists