JuliaSparse / Pardiso.jl

Calling the PARDISO library from Julia
Other
100 stars 27 forks source link

Simplify installation with BinaryBuilder #55

Closed ViralBShah closed 4 years ago

ViralBShah commented 4 years ago

Is it possible to avoid the wrapper compiler and libgomp linking steps by using MKL and other dependencies from BinaryBuilder?

KristofferC commented 4 years ago

There are no compiler or linking steps. The only thing done in the build file is just to look for libpardiso in a couple of places and store a string to the library (https://github.com/JuliaSparse/Pardiso.jl/blob/master/deps/build.jl).

Using MKL_jll might make sense in any case though.