Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try to fix LLVM 3.4/5 build #567

Merged
merged 1 commit into from Mar 14, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions .travis.yml
Expand Up @@ -3,14 +3,14 @@ install:
# LLVM 3.2 # LLVM 3.2
- sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu/ precise-proposed restricted main multiverse universe' >> /etc/apt/sources.list" - sudo sh -c "echo 'deb http://archive.ubuntu.com/ubuntu/ precise-proposed restricted main multiverse universe' >> /etc/apt/sources.list"


# LLVM 3.4 snapshots # Some random Launchpad PPA for LLVM 3.3/3.4, should consder replacing this with
# the official Clang binary package from the llvm.org download page.
- echo yes | sudo add-apt-repository ppa:h-rayflood/llvm

# LLVM 3.5 snapshots
- sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise main' >> /etc/apt/sources.list" - sudo sh -c "echo 'deb http://llvm.org/apt/precise/ llvm-toolchain-precise main' >> /etc/apt/sources.list"
- wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add - - wget -O - http://llvm.org/apt/llvm-snapshot.gpg.key | sudo apt-key add -


# Some random Launchpad PPA for LLVM 3.3, should consder replacing this with
# the official Clang binary package from the llvm.org download page.
- echo yes | sudo add-apt-repository ppa:nmi/llvm-3.3

- sudo apt-get update -qq - sudo apt-get update -qq
- sudo apt-get install -qq $LLVM_PACKAGE libconfig++8-dev - sudo apt-get install -qq $LLVM_PACKAGE libconfig++8-dev
- if [[ "${OPTS}" == *MULTILIB*ON* ]]; then sudo apt-get install -qq gcc-multilib libcurl3:i386 ; fi - if [[ "${OPTS}" == *MULTILIB*ON* ]]; then sudo apt-get install -qq gcc-multilib libcurl3:i386 ; fi
Expand Down