Skip to content

Instantly share code, notes, and snippets.

@cotsog
Created September 17, 2015 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cotsog/19cd36b295e03bdbabdb to your computer and use it in GitHub Desktop.
Save cotsog/19cd36b295e03bdbabdb to your computer and use it in GitHub Desktop.
.travis.yml for gcc-4.9 compiler support on Travis CI
before_install:
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.9
- g++-4.9
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment