@@ -78,14 +78,15 @@ before_install:
7878 contrib/travis_fastfail.sh || exit 1;
7979 brew tap staticfloat/julia;
8080 brew rm --force $(brew deps --HEAD julia);
81+ brew install -v staticfloat/juliadeps/libgfortran;
8182 brew install -v --only-dependencies --HEAD julia;
82- brew install -v staticfloat/juliadeps/libgfortran llvm39-julia;
83- BUILDOPTS="-j3 USECLANG=1 LLVM_CONFIG=$(brew --prefix llvm39-julia)/bin/llvm-config LLVM_SIZE=$(brew --prefix llvm39-julia)/bin/llvm-size";
83+ BUILDOPTS="-j3 USECLANG=1 LLVM_CONFIG=$(brew --prefix llvm37-julia)/bin/llvm-config-3.7 LLVM_SIZE=$(brew --prefix llvm37-julia)/bin/llvm-size-3.7";
8484 BUILDOPTS="$BUILDOPTS VERBOSE=1 USE_BLAS64=0 SUITESPARSE_INC=-I$(brew --prefix suite-sparse-julia)/include FORCE_ASSERTIONS=1";
8585 BUILDOPTS="$BUILDOPTS LIBBLAS=-lopenblas LIBBLASNAME=libopenblas LIBLAPACK=-lopenblas LIBLAPACKNAME=libopenblas";
8686 for lib in LLVM SUITESPARSE ARPACK BLAS FFTW LAPACK GMP MPFR PCRE LIBUNWIND; do
8787 export BUILDOPTS="$BUILDOPTS USE_SYSTEM_$lib=1";
8888 done;
89+ export CXXFLAGS=-DUSE_ORCJIT;
8990 export LDFLAGS="-L$(brew --prefix openblas-julia)/lib -L$(brew --prefix suite-sparse-julia)/lib";
9091 export DYLD_FALLBACK_LIBRARY_PATH="/usr/local/lib:/lib:/usr/lib:$(brew --prefix openblas-julia)/lib:$(brew --prefix suite-sparse-julia)/lib:$(brew --prefix arpack-julia)/lib";
9192 export JULIA_MACOS_SPAWN="DYLD_FALLBACK_LIBRARY_PATH=\"$DYLD_FALLBACK_LIBRARY_PATH\" \$1";
@@ -101,7 +102,7 @@ script:
101102 # capture the log, but only print it if `make deps` fails
102103 # try to show the end of the log first, because this log might be very long (> 4MB)
103104 # and thus be truncated by travis
104- - moreutils/mispipe "make $BUILDOPTS NO_GIT=1 -C deps 2> deps-err.log" "$BAR" > deps.log ||
105+ - moreutils/mispipe "make $BUILDOPTS VERBOSE=0 -C deps 2> deps-err.log" "$BAR" > deps.log ||
105106 { echo "-- deps build log stderr tail 100 --------------------------------------";
106107 tail -n 100 deps-err.log;
107108 echo "-- deps build log stdout tail 100 --------------------------------------";
0 commit comments