Skip to content

Commit

Permalink
.travis.yml: use gcc-4.9
Browse files Browse the repository at this point in the history
Closes #9
  • Loading branch information
maxteufel authored and tobbi committed Mar 8, 2015
1 parent 0194dd3 commit d1119d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -36,8 +36,8 @@ before_install:
# Current gcc that supports C++ 11 features
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.9; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.9" CC="gcc-4.9"; fi

# CMake
- wget http://www.cmake.org/files/v3.1/cmake-$CMAKE_VERSION.tar.gz -O - | tar xz
Expand Down

0 comments on commit d1119d5

Please sign in to comment.