Revert "Use gcc-4.9 in travis tests"

This reverts commit 9d4f397e39.
This commit is contained in:
Maxime Coste 2015-05-26 19:03:05 +01:00
parent a41ac650ba
commit d1627dfa08

View File

@ -16,10 +16,10 @@ before_install:
install:
- if [ $TRAVIS_OS_NAME = linux ]; then
if [ "$CXX" = "clang++" ]; then
sudo apt-get install -y libstdc++-4.9-dev;
sudo apt-get install -y libstdc++-4.8-dev;
elif [ "$CXX" = "g++" ]; then
sudo apt-get install -y g++-4.9;
export CXX=g++-4.9;
sudo apt-get install -y g++-4.8;
export CXX=g++-4.8;
fi;
sudo apt-get install -y libncursesw5-dev;
sudo apt-get install -y libboost-regex1.54-dev;