diff options
author | Lioncash <mathew1800@gmail.com> | 2016-04-03 21:26:28 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2016-04-03 21:45:48 +0200 |
commit | 5181b4a0df466cde55a2459290414a7d056065ba (patch) | |
tree | 717b4899f1383de9186ce1bca6644c70520da931 /.travis-build.sh | |
parent | CMakeFiles: Compile as C++14 (diff) | |
download | yuzu-5181b4a0df466cde55a2459290414a7d056065ba.tar yuzu-5181b4a0df466cde55a2459290414a7d056065ba.tar.gz yuzu-5181b4a0df466cde55a2459290414a7d056065ba.tar.bz2 yuzu-5181b4a0df466cde55a2459290414a7d056065ba.tar.lz yuzu-5181b4a0df466cde55a2459290414a7d056065ba.tar.xz yuzu-5181b4a0df466cde55a2459290414a7d056065ba.tar.zst yuzu-5181b4a0df466cde55a2459290414a7d056065ba.zip |
Diffstat (limited to '')
-rwxr-xr-x | .travis-build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis-build.sh b/.travis-build.sh index 22a3a9fd6..e06a4299b 100755 --- a/.travis-build.sh +++ b/.travis-build.sh @@ -11,8 +11,8 @@ fi #if OS is linux or is not set if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then - export CC=gcc-4.9 - export CXX=g++-4.9 + export CC=gcc-5 + export CXX=g++-5 export PKG_CONFIG_PATH=$HOME/.local/lib/pkgconfig:$PKG_CONFIG_PATH mkdir build && cd build |