about summary refs log tree commit diff stats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 148d4a9f..c3e8b7f7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -5,18 +5,18 @@ python:
 - "2.7"
 addons:
     apt:
-        sources: ['llvm-toolchain-trusty-4.0', 'ubuntu-toolchain-r-test']
+        sources: ['llvm-toolchain-trusty-5.0', 'ubuntu-toolchain-r-test']
         packages:
             - make
             - gcc
             - python-virtualenv
             - unzip
-            - llvm-4.0
-            - llvm-4.0-dev
+            - llvm-5.0
+            - llvm-5.0-dev
             - g++-5
 before_script:
 - "cd .."
-- "export LLVM_CONFIG=$(which llvm-config-4.0)"
+- "export LLVM_CONFIG=$(which llvm-config-5.0)"
 - "export CXX=$(which g++-5)"
 # make virtual env
 - "python /usr/lib/python2.7/dist-packages/virtualenv.py virtualenv;"