Require clang >= 3.6 as 3.5 is failing on debug symbol generation

This commit is contained in:
Maxime Coste 2017-07-19 17:59:01 +02:00
parent f87afbcb65
commit 9c44077002
2 changed files with 4 additions and 4 deletions

View File

@ -18,7 +18,7 @@ before_install:
install:
- if [ $TRAVIS_OS_NAME = linux ]; then
if [ "$CXX" = "clang++" ]; then
export CXX=clang++-3.5;
export CXX=clang++-3.6;
elif [ "$CXX" = "g++" ]; then
export CXX=g++-5;
fi;
@ -34,9 +34,9 @@ addons:
sources:
- boost-latest
- ubuntu-toolchain-r-test
- llvm-toolchain-precise-3.5
- llvm-toolchain-precise-3.6
packages:
- clang-3.5
- clang-3.6
- libstdc++-5-dev
- g++-5
- libncursesw5-dev

View File

@ -102,7 +102,7 @@ Building
Kakoune dependencies are:
* A {cpp}14 compliant compiler (GCC >= 5 or clang >= 3.5) along with its
* A {cpp}14 compliant compiler (GCC >= 5 or clang >= 3.6) along with its
associated {cpp} standard library (libstdc{pp} or libc{pp})
* boost (>= 1.50)
* ncurses with wide-characters support (>= 5.3, generally referred to as libncursesw)