Yet another attempt at g++

This commit is contained in:
Tadas Baltrusaitis 2016-07-27 16:07:46 -04:00
parent 2a2696268a
commit 63c787540f
1 changed files with 6 additions and 2 deletions

View File

@ -6,7 +6,6 @@ branches:
- develop
- feature-travis
compiler:
- clang
- gcc
before_install:
@ -14,13 +13,18 @@ before_install:
- if [ "$CXX" == "g++" ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
# clang 3.4
- if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi
#- if [ "$CXX" == "clang++" ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi
- sudo apt-get update -qq
install:
- if [ "$CXX" == "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" == "g++" ]; then export CXX="g++-4.8"; fi
- sudo apt-get install git libgtk2.0-dev pkg-config libavcodec-dev libavformat-dev libswscale-dev
- sudo apt-get install python-dev python-numpy libtbb2 libtbb-dev libjpeg-dev libpng-dev libtiff-dev libjasper-dev libdc1394-22-dev checkinstall
# Getting newest boost
#- add-apt-repository ppa:boost-latest/ppa
#- sudo apt-get update
- sudo apt-get install libboost-all-dev
before_script: