How to debug generated mex codes
46 views (last 30 days)
Show older comments
I am trying to build an application in C++ using Visual Studio 2017. I have added paths in the directory as recommended https://www.youtube.com/watch?reload=9&v=vQ5aIxCX3To. Somehow I get an error - libmx.dll not found. I tried following - I copied this dll from bin\win64 and pasted it in the solution directory. After this I got error saying a different dll is missing. Then I tried to copy entire bin\win64 in a different location and added that path. Still the same error. Please help me resolve the issue.
When I generate mex from my code it works just fine, but I can't run the code in Visual Studio-17. Thanks
0 Comments
Accepted Answer
Ryan Livingston
on 26 Oct 2018
Moved from comment To debug generated MEX code, just pass the -g option to codegen and that will compile a debug MEX file. You can then debug that MEX code by following the same process you'd use for debugging hand-written MEX files:
In short, you compile and run the MEX in MATLAB and attach Visual Studio to MATLAB, stopping when the MEX code is executed.
Note that the -g option is the same as the Coder config setting EnableDebugging:
1 Comment
Maya Jubran
on 19 Jan 2022
Hello
How to actually debug the mex file in the matlab coder . I have built the buildInstrumented mex file successfuly, and following the command line to run the mex file , the error returns to me. What is the full command to enable debugging the mex file ? THank you
More Answers (1)
Ryan Livingston
on 23 Oct 2018
It sounds like you are generating MEX code. MEX code assumes that MATLAB is present and as a result it may have a large number of dependencies. For this reason, MEX code should be compiled in MATLAB with MATLAB Coder or the MEX command. Compiling it with Visual Studio outside of MATLAB is not recommended.
Instead you can choose one of the standalone code generation options to use inside of Visual Studio. You can do that with:
cfg = coder.config('lib'); % or 'dll'
codegen -config cfg myFunction.m -args ...
and then use that code in Visual Studio. More info on generating standalone code:
Here's an example of using the generated code in Visual Studio:
Finally, the Deployment category in the documentation may be of interest:
3 Comments
Ryan Livingston
on 24 Oct 2018
Edited: Ryan Livingston
on 24 Oct 2018
Got it. That helps. Just pass the -g option to codegen and that will compile a debug MEX file. You can then debug that MEX code by following the same process you'd use for debugging hand-written MEX files:
In short, you compile and run the MEX in MATLAB and attach Visual Studio to MATLAB, stopping when the MEX code is executed.
Note that the -g option is the same as the Coder config setting EnableDebugging:
If that helps, would you consider changing the title of this question to something like "How do I debug MATLAB Coder MEX files?" so that others could find it?
See Also
Categories
Find more on MATLAB Code Analysis 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!