I have used ILNumerics via Excel DNA in Excel successfully for some time. Now I wrote a new function which uses the linsolve function from ILNumerics (which needs the mkl_custom.dll) and I cannot build this into an XLL. My custom function works in debug which is why I assume sth in the packaging goes wrong.
Here is my dna file:
<DnaLibrary Name="Nik's Lib" RuntimeVersion="v4.0">
<ExternalLibrary Path="MyLib2010.dll" Pack="true"/>
<Reference Path="ILNumerics.dll" Pack="true"/>
<Reference Path="mkl_custom.dll" Pack="true"/>
</DnaLibrary>
When packaging this I get the error message that path for mkl_custom.dll
path not found
This might be due to the folder structure of the dll:
Any pointers on how to resolve this would be appreciated.