We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c027f1 commit 622b4d8Copy full SHA for 622b4d8
.travis.yml
@@ -12,8 +12,10 @@ before_install:
12
13
install:
14
# gcc
15
- - if [ "$CXX" = "g++" ]; then sudo apt-get install -qq g++-4.8; fi
16
- - if [ "$CXX" = "g++" ]; then export CXX="g++-4.8"; fi
+ - if [ "$CC" == "gcc" ]; then sudo apt-get install -qq gcc-4.8; fi
+ - if [ "$CC" == "gcc" ]; then export CC="gcc-4.8"; fi
17
+ - if [ "$CXX" == "g++" ]; then sudo apt-get install -qq g++-4.8; fi
18
+ - if [ "$CXX" == "g++" ]; then export CXX="g++-4.8"; fi
19
# clang
20
- if [ "$CXX" == "clang++" ]; then sudo apt-get install --allow-unauthenticated -qq clang-3.4; fi
21
- if [ "$CXX" == "clang++" ]; then export CXX="clang++-3.4"; fi
0 commit comments