From e286b194e587631a1a6ef7ef219cbdca30bde8bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Lemaire?= Date: Thu, 10 Dec 2015 19:54:52 +0100 Subject: [PATCH] Updating travis toolchain to g++ 4.9 (for c++-14 standard) --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 053bfe3..2d3af97 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,9 +3,9 @@ language: cpp before_script: - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt-get update -qq - - sudo apt-get install g++-4.8 - - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 50 - - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 50 + - sudo apt-get install g++-4.9 + - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 50 + - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 50 - wget -O Qt5.2.0.tar.xz http://thunderk.net/public/Qt5.2.0.tar.xz - mkdir ~/Qt5.2.0 - tar -xJf Qt5.2.0.tar.xz -C ~/Qt5.2.0