Commit 524b4392 authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Fix travis build failure

parent 859bf2bc
...@@ -12,8 +12,10 @@ addons: ...@@ -12,8 +12,10 @@ addons:
apt: apt:
sources: sources:
- ubuntu-toolchain-r-test - ubuntu-toolchain-r-test
- llvm-toolchain-trusty-7
packages: packages:
- g++-7 - g++-8
- clang-7
- autoconf - autoconf
- automake - automake
- autotools-dev - autotools-dev
...@@ -32,7 +34,8 @@ addons: ...@@ -32,7 +34,8 @@ addons:
- cmake-data - cmake-data
before_install: before_install:
- $CC --version - $CC --version
- if [ "$CXX" = "g++" ]; then export CXX="g++-7" CC="gcc-7"; fi - if [ "$CXX" = "g++" ]; then export CXX="g++-8" CC="gcc-8"; fi
- if [ "$CXX" = "clang++" ]; then export CXX="clang++-7" CC="clang-7"; fi
- $CC --version - $CC --version
- go version - go version
- cmake --version - cmake --version
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment