Skip to content

Commit

Permalink
update r815
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Apr 9, 2015
1 parent 07ea655 commit b0691e5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ compiler:
- gcc

before_install:
- if [ "${CXX}" = 'g++' ] && [ "${HOST}" != 'WINE' ] && [ "${USE_COVERAGE}" != 'lcov' ]; then sudo export USE_GCC48=yes; fi
- if [ "${USE_GCC48}" = 'yes' ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
- if [ "${CXX}" = 'g++' ] && [ "${HOST}" != 'WINE' ] && [ "${USE_COVERAGE}" != 'lcov' ]; then export USE_GCC48=1; fi
- if [ "${USE_GCC48}" = '1' ]; then sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test; fi
#- if [ "${CXX}" = 'clang++' ]; then wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -; fi
#- if [ "${CXX}" = 'clang++' ]; then sudo add-apt-repository --yes 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise main'; fi
#- if [ "${CXX}" = 'clang++' ]; then sudo add-apt-repository -y ppa:h-rayflood/llvm; fi
Expand All @@ -15,10 +15,10 @@ before_install:

install:
# gcc 4.8
- if [ "${USE_GCC48}" = 'yes' ]; then sudo apt-get -qq install g++-4.8; fi
- if [ "${USE_GCC48}" = 'yes' ]; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90; fi
- if [ "${USE_GCC48}" = 'yes' ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90; fi
- if [ "${USE_GCC48}" = 'yes' ]; then sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-4.8 90; fi
- if [ "${USE_GCC48}" = '1' ]; then sudo apt-get -qq install g++-4.8; fi
- if [ "${USE_GCC48}" = '1' ]; then sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90; fi
- if [ "${USE_GCC48}" = '1' ]; then sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90; fi
- if [ "${USE_GCC48}" = '1' ]; then sudo update-alternatives --install /usr/bin/gcov gcov /usr/bin/gcov-4.8 90; fi
# clang 3.5
#- if [ "${CXX}" = 'clang++' ]; then sudo apt-get -qq install clang-3.5; fi
#- if [ "${CXX}" = 'clang++' ]; then export CXX="clang++-3.5"; fi
Expand Down

0 comments on commit b0691e5

Please sign in to comment.