mirror of
https://github.com/danog/gllvm.git
synced 2024-11-26 21:24:42 +01:00
10 lines
312 B
Bash
Executable File
10 lines
312 B
Bash
Executable File
#!/bin/bash -x
|
|
set -ev
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
wget http://csl.sri.com/users/iam/llvm_lite-6.0.0.high_sierra.bottle.1.tar.gz
|
|
brew install -v ./llvm_lite-6.0.0.high_sierra.bottle.1.tar.gz
|
|
# this bombs out at the update of 'unbound' whatever that is ...
|
|
#brew install -v llvm
|
|
fi
|