diff options
| author | serpilliere <serpilliere@users.noreply.github.com> | 2017-12-11 21:22:22 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-12-11 21:22:22 +0100 |
| commit | 08c831a627b0f0159276d2ca895cd8c8feb8bb21 (patch) | |
| tree | ff23a637a17c93ffe69941e766d865347d17df88 | |
| parent | 52cec00d2b3162b8c622d7a1a1ec9b6752bfc614 (diff) | |
| parent | 0fc6ec770fd816f95d98beba56da7635d87e60d1 (diff) | |
| download | miasm-08c831a627b0f0159276d2ca895cd8c8feb8bb21.tar.gz miasm-08c831a627b0f0159276d2ca895cd8c8feb8bb21.zip | |
Merge pull request #643 from commial/fix/support-llvmlite-0.21
Travis: switch to llvm-5.0 for LLVMLite 0.21
| -rw-r--r-- | .travis.yml | 8 |
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;" |