gcc.sh 188 Bytes
Newer Older
rusty1s's avatar
rusty1s committed
1
2
3
4
5
6
7
8
9
#!/bin/bash

if [ "${TRAVIS_OS_NAME}" = "linux" ]; then
  sudo add-apt-repository ppa:ubuntu-toolchain-r/test
  sudo apt install gcc-7 g++-7 --yes
  export CC=gcc-7
  export CXX=g++-7
fi