21 lines
643 B
Bash
Executable File
21 lines
643 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Install newer GCC if we're running on GCC
|
|
if [ "${CXX}" == "g++" ]; then
|
|
# We need to uninstall oclint because it creates a /usr/local/include/c++ symlink that clashes with the gcc5 package
|
|
# see https://github.com/Homebrew/homebrew-core/issues/21172
|
|
brew cask uninstall oclint
|
|
brew install gcc@7
|
|
fi
|
|
|
|
brew cask install osxfuse
|
|
brew install libomp
|
|
|
|
# By default, travis only fetches the newest 50 commits. We need more in case we're further from the last version tag, so the build doesn't fail because it can't generate the version number.
|
|
git fetch --unshallow --tags
|
|
|
|
# Setup ccache
|
|
brew install ccache
|