Skip to content

Commit

Permalink
unbreak win64 appveyor
Browse files Browse the repository at this point in the history
caa3277 was causing every single win64 build to time out while building inference into the sysimg. This seems to fix it for me locally. I have no idea why.
  • Loading branch information
tkelman committed Mar 5, 2015
1 parent 27b6bbf commit 46bcd77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/windows/msys_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ if [ -z "`which make 2>/dev/null`" ]; then
export PATH=$PWD/bin:$PATH
fi

for lib in LLVM SUITESPARSE ARPACK BLAS LAPACK FFTW \
for lib in SUITESPARSE ARPACK BLAS LAPACK FFTW \
GMP MPFR PCRE LIBUNWIND RMATH OPENSPECFUN; do
echo "USE_SYSTEM_$lib = 1" >> Make.user
done
Expand Down

2 comments on commit 46bcd77

@ihnorton
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎱

@tkelman
Copy link
Contributor Author

@tkelman tkelman commented on 46bcd77 Mar 5, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think there are some LLVM passes that get rearranged or disabled or something to work around some bugs in 3.3 when we have USE_SYSTEM_LLVM on, whereas the LLVM binary I'm downloading on AppVeyor was built by me including the Julia patches. Still confusing though.

Please sign in to comment.