Description
Recently, I tried to prepare a new version of PeriodicSystems by starting with several commits. Running the tests, the following error pops up repeatedly
Error: no BLAS/LAPACK library loaded!
(see here)
The cause of these error messages is apparently the new version of LinearSolve
, where MKL
is loaded now by default instead OpenBLAS
(see the discussion here). I implemented several wrappers to routines from the SLICOT library, using the automatically generated SLICOT_jll. Apparently, some calls to BLAS/LAPACK
are not covered there by MKL
. I assume that other people using OrdinaryDiffEq
may face the same issue.
I would appreciate if you could help me to overcome this situation, by indicating a way to preserve the behaviour before the last update. Many thanks in advance