gcc.sh 194 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
#!/bin/bash

if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
rusty1s's avatar
rusty1s committed
4
  sudo add-apt-repository ppa:ubuntu-toolchain-r/test --yes
rusty1s's avatar
rusty1s committed
5
6
7
8
9
  sudo apt install gcc-7 g++-7 --yes
  export CC=gcc-7
  export CXX=g++-7
fi