Function 'loadlibrary' is not supported for standalone code generation. Seeking alternative options.

6 views (last 30 days)
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.

Accepted Answer

Mike Hosea
Mike Hosea on 22 Apr 2011
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
  2 Comments
Yu Ang Tan
Yu Ang Tan on 25 Apr 2011
Hi Mike
Wow, you're being too modest. Yes, coder.ceval worked for me, as long as I have included the library in the coder dialog box.
There's a small pain though, as MATLAB changes splits up my new line (\n) to separate characters : '\' and 'n'.
Clearly, there's a better way to do this, but for now I'll just have to call a function to print a new line. (laughs)
Thanks once again.
Kaustubha Govind
Kaustubha Govind on 25 Apr 2011
Yu: When you say MATLAB splits up your "\n" did you mean:
>> disp('test\nprint')
test\nprint
If so, you may want to use sprintf:
>> disp(sprintf('test\nprint'))
test
print

Sign in to comment.

More Answers (0)

Categories

Find more on C Shared Library Integration in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!