From 4c4dac1ae9ff302c9254a534a3ecaf19ee09facb Mon Sep 17 00:00:00 2001 From: nanoric Date: Mon, 15 Apr 2019 09:33:18 -0400 Subject: [PATCH] [Fix] fix gcc 8 link error --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 47e3f3db..0ef835b3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -42,9 +42,9 @@ matrix: packages: - g++-8 before_install: - - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 90 - - sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-7 90 - - sudo update-alternatives --install /usr/bin/gcc cc /usr/bin/gcc-7 90 + - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 90 + - sudo update-alternatives --install /usr/bin/c++ c++ /usr/bin/g++-8 90 + - sudo update-alternatives --install /usr/bin/gcc cc /usr/bin/gcc-8 90 install: # update pip & setuptools - python -m pip install --upgrade pip wheel setuptools