commit 48e2e851a4c3fd54f52817ffe936583f0a4518df
parent 533e25f50d6a8f943c95395226c08dac94d0a8be
Author: fundamental <mark.d.mccurry@gmail.com>
Date: Fri, 17 Apr 2015 12:09:17 -0400
Update Rtosc
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/.travis.yml b/.travis.yml
@@ -4,14 +4,18 @@ compiler:
- gcc
before_install:
+ - sudo apt-get --purge remove gcc
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get -qq update
- sudo apt-get -qq install g++-4.8
+ - sudo apt-get -qq install gcc-4.8
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
+ - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
- sudo apt-get install zlib1g-dev libmxml-dev libfftw3-dev
- wget http://downloads.sourceforge.net/liblo/liblo-0.28.tar.gz
- tar xvf liblo-0.28.tar.gz && cd liblo-0.28
- ./configure && make && sudo make install
+ - sudo ldconfig
- cd ..