-
Notifications
You must be signed in to change notification settings - Fork 559
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
[MKL] Add IntelOpenMP as dependency #260
Conversation
Here audit takes quite a lot of time, should we disable it, like it was before? |
should_build_platform
to be able to build on Azure
Interesting: after adding IntelOpenMP as dependency audit is failing 😕 |
I don't know why, but it's putting the libraries into |
Maybe I should check the |
Now mv lib ${libdir} puts After we finish the LLVM builds I'll update the script to: cd $WORKSPACE/srcdir
if [[ ${target} == *mingw* ]]; then
cp -r Library/bin/* ${libdir}
else
cp -r lib/* ${libdir}
fi
install_license info/*.txt |
Good to go? I've marked the artifacts to be lazy because, even though the license of MKL allows redistribution, the library is not free and open source software and is also quite large. This sparked some legitimate complaints in JuliaMath/FFTW.jl#133. By making the artifacts lazy we require the users to opt-in the download of the tarball, like setting an environment variable for |
This reorganises the builder like #259 in order to properly work with Azure Pipelines and adds IntelOpenMP as dependency. Requires JuliaRegistries/General#6255 to be merged.