| #!/bin/bash |
| |
| set -ex |
| |
| if [ -n "$GCC_VERSION" ]; then |
| |
| # Need the official toolchain repo to get alternate packages |
| add-apt-repository ppa:ubuntu-toolchain-r/test |
| apt-get update |
| if [[ "$UBUNTU_VERSION" == "16.04" && "${GCC_VERSION:0:1}" == "5" ]]; then |
| apt-get install -y g++-5=5.4.0-6ubuntu1~16.04.12 |
| update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 50 |
| update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 50 |
| update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-5 50 |
| else |
| apt-get install -y g++-$GCC_VERSION |
| update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-"$GCC_VERSION" 50 |
| update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-"$GCC_VERSION" 50 |
| update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-"$GCC_VERSION" 50 |
| fi |
| |
| |
| # Cleanup package manager |
| apt-get autoclean && apt-get clean |
| rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* |
| |
| fi |