Closed pmeheut closed 2 years ago
Hi,
The fix would likely consist in changing slightly how we dlsym
symbols. Instead of eagerly loading all symbols and failing if any of them aren't available, we could instead try to load the symbol at startup, but only fail by throwing a Java exception when the symbol isn't available.
Would that fit your use case?
Thanks
Yes it would work. Thanks.
I've managed to compile everything on BigSur and had to make some changes but everything works fine until I try to use a native implementation of Lapack. It tries to load dgegs but this symbol has been deprecated: see https://docs.oracle.com/cd/E19957-01/816-2461/dgegs.html for instance. Any solution?