Closed kwalcock closed 1 year ago
@kwalcock Hi! only linux-amd64 and linux-aarch64 are supported at the moment. I'm planning to add support for linux-riscv64 soon.
What other platforms would you need support for?
My goal is to have in addition to linux-amd64 and linux-aarch64, the same two variations for Mac and then Windows (10+) on amd64. Linux end users are in the minority for us. Thanks for the clarification.
In the version of this project deployed to maven as
which is used by https://github.com/scalanlp/breeze, I see in the jar a
resources.native/Linux-amd64/libnetlibblasjni.so
and code indev.ludovic.netlib.blas.InstanceBuilder
that would cause it to be accessed. If I want something other than Linux-amd64, it looks like I will have to build a library corresponding to
libnetlibblasjni.so
for my system and include it in a similar jar file so that it can then access a native blas library on my computer. Is this correct? Thank you.