Updated travis file to properly select gcc-4.7.

This commit is contained in:
rakshasa
2016-03-10 09:37:58 +09:00
parent 3e7f9d8b4f
commit 629e421d67
+7 -4
View File
@@ -7,11 +7,14 @@ before_install:
- sudo add-apt-repository --yes ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get build-dep rtorrent libtorrent-dev
if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.7; fi
if [ "$CXX" = "g++" ]; then export CXX="g++-4.7" CC="gcc-4.7"; fi
# prevent `macro `AM_PATH_CPPUNIT' not found in library` in `autogen.sh`
- sudo apt-get install libcppunit-dev gcc-4.7 g++-4.7
# `autogen.sh` doesn't call `configure`
- export CC=gcc-4.7 && export CXX=g++-4.7
- git clone https://github.com/rakshasa/libtorrent.git && cd libtorrent && ./autogen.sh && configure && make -j24 && sudo make install && cd ..
- sudo apt-get install libcppunit-dev
- git clone https://github.com/rakshasa/libtorrent.git && cd libtorrent && ./autogen.sh && configure && make -j12 && sudo make install && cd ..
# Figure out how to fix the issue running 'make check'.
script: ./autogen.sh && ./configure && make -j12 && sudo make install