Created
September 17, 2015 13:00
-
-
Save cotsog/19cd36b295e03bdbabdb to your computer and use it in GitHub Desktop.
.travis.yml for gcc-4.9 compiler support on Travis CI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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