I have a test console app that uses a call to dgesdd_ from the Accelerate framework. I used to be able to call
Accelerate.vecLib.dgesdd_(...
but in the latest Fire I get “unknown identifier.” I haven’t tried this in a while so I don’t know when the regression happened.
However, guided by code completion, I noted that I can do
Accelerate.vecLib.Accelerate.vecLib.dgesdd_(...
and it works.