mexw64 function dynamically linked to .dll will not run w/out c compiler

조회 수: 1 (최근 30일)
I am running an executable matlab program that is using a mexw64 function, which is linked to a .dll. It runs fine on my computer, and on some other machines (so i know its not a lnk error), but not on machines w/out a c/c++ compiler. Is there any way to use this mex function w/out a c compiler? or somehow combine the .dll with the mex into one mex function?
If no for both of these, does anyone have any idea how i can throw this mex in a try catch, and if it goes to catch(no c/c++ compiler installed), make it automatically download a free .net c++ compiler?

채택된 답변

James Tursa
James Tursa 2013년 7월 12일
Typically you don't need the C compiler itself installed, you only need the libraries, which are usually free to download and install.
  댓글 수: 2
Kaustubha Govind
Kaustubha Govind 2013년 7월 12일
I agree with James. However, I wonder if you are compiling with Visual Studio. If so, you probably need to have the Visual Studio Redistributable Package (and not the compiler itself) available at runtime. You can't throw across the MEX interface to MATLAB, but I think you can have a try-catch block inside the MEX-function and return an error to MATLAB using mexErrMsgTxt.
ryan
ryan 2013년 7월 13일
I Have installed both of the correct installers and it still does not work. Any idea why this may be?

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Ken Atwell
Ken Atwell 2013년 7월 13일
It sounds like there is a dependency missing. Use Dependency Walker on the broken computer and see what it tells you.
Let us know if this helps or not.

카테고리

Help CenterFile 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!

Translated by