Using loadlibrary in deployed application on computer without matlab
显示 更早的评论
I need to load a dll using loadlibrary in a deployed GUI application. I have created a .m file to use the calllib function in a deployed application as recommended.
To get the application to work as deployed on even my computer (with Matlab installed) I had to run mex -setup and select the Lcc-win32 C 2.4.1 compiler. The application now runs fine on my computer but when I need to run it on a computer not running Matlab and not with the Lcc-win32 C compiler selected it fails.
How can I get around this?
1 个评论
Geoff
2012-5-2
Have you installed the MCR on your target machine? It is required to run deployed apps.
Are you able to provide a more descriptive account of the issue instead of "it fails"?
回答(4 个)
Walter Roberson
2012-5-2
0 个投票
Which MATLAB version are you using, on which OS? You are using the 32 bit version of MATLAB, right? And the target system, which OS version is it? Have you installed MCR on the target system?
Kaustubha Govind
2012-5-2
0 个投票
If you are already using the prototype file (.m) for LOADLIBRARY, you don't need to have a C/C++ compiler installed. Try running your application from a command window (as opposed to simply double-clicking on the icon), and see what error is reported.
Krishan
2012-5-2
3 个评论
Philip Borghesani
2012-5-2
I expect this error is caused by the dll you are loading not being properly installed on your deployed computer. Did you copy the library you are using or install it on the second computer? Are there other requirements to use this library?
Walter Roberson
2012-5-2
Did you bundle the library with the .exe ? If so then is the directory that the .exe unbundles into on the search path for dll file? MCR_CACHE_ROOT
http://www.mathworks.com/matlabcentral/answers/36794-mex-file-error-when-code-called-from-web-server
Krishan
2012-5-2
Krishan
2012-5-3
0 个投票
1 个评论
Kaustubha Govind
2012-5-3
Perhaps a web search will help. For example: http://blogs.msdn.com/b/junfeng/archive/2006/04/14/576314.aspx
类别
在 帮助中心 和 File Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!