.travis.yml: use gcc-4.9
authorMax Teufel <max@teufelsnetz.com>
Sun, 8 Mar 2015 10:28:48 +0000 (11:28 +0100)
committerTobias Markus <tobbi@mozilla-uk.org>
Sun, 8 Mar 2015 15:03:19 +0000 (16:03 +0100)
Closes #9

.travis.yml

index ec324ab..5573dd9 100644 (file)
@@ -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