travis: Remove symbolic link

This commit is contained in:
Joshua Scott 2018-03-29 15:57:57 +01:00
parent 3d7931a0fc
commit 55cae79eca
1 changed files with 2 additions and 6 deletions

View File

@ -12,17 +12,13 @@ addons:
- gcc-6
- g++-6
- cmake
script:
# Link gcc-6 and g++-6 to their standard commands
- ln -s /usr/bin/gcc-6 /usr/local/bin/gcc
- ln -s /usr/bin/g++-6 /usr/local/bin/g++
script:
# Export CC and CXX to tell cmake which compiler to use
- export CC=/usr/bin/gcc-6
- export CXX=/usr/bin/g++-6
# Check versions of gcc, g++ and cmake
- gcc -v && g++ -v && cmake --version
- gcc-6 -v && g++-6 -v && cmake --version
# Build
- rm -rf build/