Commit 53108c0d authored by xoviat's avatar xoviat Committed by GitHub

[travis] link g++ directly

parent 5dfc6611
...@@ -11,6 +11,7 @@ addons: ...@@ -11,6 +11,7 @@ addons:
- python-dbg - python-dbg
- python3-dbg - python3-dbg
- gcc-6 - gcc-6
- g++-6
cache: cache:
pip: true pip: true
...@@ -91,7 +92,7 @@ before_install: ...@@ -91,7 +92,7 @@ before_install:
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
mkdir "$HOME/gcc-symlinks" mkdir "$HOME/gcc-symlinks"
ln -s /usr/bin/gcc-6 $HOME/gcc-symlinks/gcc ln -s /usr/bin/gcc-6 $HOME/gcc-symlinks/gcc
ln -s /usr/bin/gcc-6 $HOME/gcc-symlinks/g++ ln -s /usr/bin/g++-6 $HOME/gcc-symlinks/g++
gcc --version gcc --version
fi fi
......
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