[circleci] upgrade to clang++-3.5

This commit is contained in:
Dane Springmeyer 2016-03-14 08:46:29 -07:00
parent da8384310e
commit eb34d19c9f
2 changed files with 7 additions and 1 deletions

View file

@ -15,6 +15,12 @@ machine:
dependencies: dependencies:
cache_directories: cache_directories:
- "~/.ccache" - "~/.ccache"
post:
- sudo wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -
- sudo add-apt-repository "deb http://llvm.org/apt/precise/ llvm-toolchain-precise-3.5 main"
- sudo apt-get update -y
- sudo apt-get install clang-3.5 -y
test: test:
override: override:

View file

@ -7,6 +7,6 @@ source bootstrap.sh
ccache --version ccache --version
ccache -p || true ccache -p || true
ccache --show-stats || true ccache --show-stats || true
./configure CXX="ccache clang++ -Qunused-arguments" ./configure CC="clang-3.5" CXX="ccache clang++-3.5 -Qunused-arguments"
make make
make test make test