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 weaning ourselves completely off of staticfloat/julia* Homebrew taps #30991

Merged
merged 14 commits into from
Feb 12, 2019
Merged
Prev Previous commit
Next Next commit
Simplify OSX configuration
staticfloat committed Feb 8, 2019
commit 6dd9ec21f9a53d6f29ae3c642dee61a996489ac9
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -75,10 +75,10 @@ before_install:
contrib/travis_fastfail.sh || exit 1;
brew rm --force gcc gmp mpfr pcre2;
brew install -v gcc gmp mpfr pcre2;
BUILDOPTS="-j3 USECLANG=1 USECCACHE=1 USE_BINARYBUILDER_LLVM=1 USE_BINARYBUILDER_OPENBLAS=1 USE_BINARYBUILDER_SUITESPARSE=1 BINARYBUILDER_LLVM_ASSERTS=1";
BUILDOPTS="$BUILDOPTS LLVM_CONFIG=$TRAVIS_BUILD_DIR/usr/tools/llvm-config LLVM_SIZE=$TRAVIS_BUILD_DIR/usr/tools/llvm-size";
BUILDOPTS="$BUILDOPTS VERBOSE=1 USE_BLAS64=0 FORCE_ASSERTIONS=1";
BUILDOPTS="$BUILDOPTS LIBBLAS=-lopenblas LIBBLASNAME=libopenblas LIBLAPACK=-lopenblas LIBLAPACKNAME=libopenblas";
BUILDOPTS="-j3 USECLANG=1 USECCACHE=1 VERBOS=1 FORCE_ASSERTIONS=1";
for proj in LLVM LLVM_ASSERTS OPENBLAS SUITESPARSE; do
BUILDOPTS="$BUILDOPTS USE_BINARYBUILDER_${proj}=1";
done;
for lib in GMP MPFR LIBUNWIND; do
BUILDOPTS="$BUILDOPTS USE_SYSTEM_$lib=1";
done;