Using loadlibrary in deployed application on computer without matlab
Mostrar comentarios más antiguos
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 comentario
Geoff
el 2 de Mayo de 2012
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"?
Respuestas (4)
Walter Roberson
el 2 de Mayo de 2012
0 votos
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?
1 comentario
Krishan
el 2 de Mayo de 2012
Kaustubha Govind
el 2 de Mayo de 2012
0 votos
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
el 2 de Mayo de 2012
3 comentarios
Philip Borghesani
el 2 de Mayo de 2012
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
el 2 de Mayo de 2012
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
el 2 de Mayo de 2012
Krishan
el 3 de Mayo de 2012
0 votos
1 comentario
Kaustubha Govind
el 3 de Mayo de 2012
Perhaps a web search will help. For example: http://blogs.msdn.com/b/junfeng/archive/2006/04/14/576314.aspx
Categorías
Más información sobre Introduction to Installation and Licensing en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!