diff options
| author | Camille Mougey <commial@gmail.com> | 2018-04-27 12:45:27 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-04-27 12:45:27 +0200 |
| commit | 2fffc601d63b2a9e8c354d4c1a2336639b878ddc (patch) | |
| tree | 76ba2c378ced75cf02ab98daa71cfef948bd1044 | |
| parent | 00fec850c118cd23623761fb1f45b8f381d8fc15 (diff) | |
| parent | 6ce0fc0571c566d4aece4471b1671e1e0437ae7a (diff) | |
| download | miasm-2fffc601d63b2a9e8c354d4c1a2336639b878ddc.tar.gz miasm-2fffc601d63b2a9e8c354d4c1a2336639b878ddc.zip | |
Merge pull request #729 from serpilliere/updt_llvm
Travis: switch to llvm-6.0 for LLVMLite 0.23
Diffstat (limited to '')
| -rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index c3e8b7f7..2a28f290 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,18 +5,18 @@ python: - "2.7" addons: apt: - sources: ['llvm-toolchain-trusty-5.0', 'ubuntu-toolchain-r-test'] + sources: ['llvm-toolchain-trusty-6.0', 'ubuntu-toolchain-r-test'] packages: - make - gcc - python-virtualenv - unzip - - llvm-5.0 - - llvm-5.0-dev + - llvm-6.0 + - llvm-6.0-dev - g++-5 before_script: - "cd .." -- "export LLVM_CONFIG=$(which llvm-config-5.0)" +- "export LLVM_CONFIG=$(which llvm-config-6.0)" - "export CXX=$(which g++-5)" # make virtual env - "python /usr/lib/python2.7/dist-packages/virtualenv.py virtualenv;" |