MATLAB: Function ‘loadlibrary’ is not supported for standalone code generation. Seeking alternative options.

coderdllexternal interfaceshared library

Hi,
I am using loadlibrary() to call some functions from a C++ .dll file so that I can develop my application in MATLAB.
However, when I try to generate standalone code using MATLAB Coder, I get the following error:
>> coder -build CodeApp.prj
??? The function 'loadlibrary' is not supported
for standalone code generation. See the
documentation for coder.extrinsic to learn how
you can use this function in simulation.
It appears that loadlibrary is not supported for code generation. Does anyone know of other ways where I can include the .dll file?
(I could compile my application using MATLAB Compiler, but that would require MCR, which isn't what I need.)
Any help would be very much appreciated.

Best Answer

Unfortunately, I don't have a lot of experience trying to do this kind of thing, so I apologize in advance if there are helpful details that I ought to mention but don't happen to know. What I do know that the intended tool for code generation would be coder.ceval. Now, coder.ceval doesn't work in MATLAB, but you can use coder.target in a judicious way so that your application will still run in MATLAB while you're developing it and will also generate code. Something like
runningInMATLAB = isempty(coder.target);
if runningInMATLAB
loadlibrary(...)
end
...
if runningInMATLAB
% Use calllib here
else
% Use coder.ceval here to call the same function
end
...
if runningInMATLAB
unloadlibrary(...);
end
HTH -- Mike