Skip to content

Commit

Permalink
Double check compiler version.
Browse files Browse the repository at this point in the history
  • Loading branch information
seaneshbaugh committed Jul 2, 2014
1 parent ffcfec0 commit 53e70f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -5,8 +5,8 @@ compiler:
before_install:
- sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
- sudo apt-get update -qq
- if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CXX" = "g++" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
- if [ "$CC" = "gcc" ]; then sudo apt-get install -qq g++-4.8; fi
- if [ "$CC" = "gcc" ]; then export CXX="g++-4.8" CC="gcc-4.8"; fi
before_script:
- $CC --version
- if [ "$CC" = "gcc" ]; then $CC --version; fi
script: make all

0 comments on commit 53e70f6

Please sign in to comment.