Debugging mex-files. Visual Studio breakpoints not working.

6 views (last 30 days)
For the longest time, I have been able to debug mex-functions using Visual Studio. In the past it often required a little dance of rebuilding and reattaching to Matlab, but it eventually works and breakpoints set in VS are tripped when the mex-file is called.
Lately, I find this is far less reliable and most times the mex-function executes without triggering a breakpoint. Even with repeated calls to clear mex, reattaching the debugger, etc.
My environment:
  • Visual Studio 2022 (Community)
  • Matlab 2022b
  • Mex-functions compiled with the -g flag.
  • Working in build directory (Matlab)
  • Build directory open (VS)
  • Note: This is not set up as a VS project or solution.
Typically I use my own project, but I've verified that the yprime.c example has exactly the same problem.
Working example:
copyfile(fullfile(matlabroot,'extern','examples','mex','yprime.c'),'.','f')
mex -g yprime.c
pause;%Open yprime.c in VS, Set breakpoint in VS attach to Matlab process
yprime(1,1:4)

Answers (1)

Sarthak
Sarthak on 15 May 2023
Hi John,
I tried to recreate the issue with your specified environment. The mentioned example yprime.c is running fine with the breakpoints behaving as expected. There may be some other issue why your breakpoints are not behaving as expected. Please verify that you have attached the MATLAB process correctly. If the issue persists, Microsoft Help Resources will be better suited to help troubleshoot these types of issues.
You can also refer to this answer for your reference.
  3 Comments
Jesse Hopkins
Jesse Hopkins on 27 Oct 2023
I echo your sentiment John. For me, I have to use a procedure like:
  1. Start Matlab
  2. Compile mex file in debug
  3. Attach VS, set breakpoints
  4. Run mex file
  5. Break points work! (yay)
  6. Do some coding in the *.c file
  7. De-attach VS (to release *.mex file)
  8. Recompile mex file in debug
  9. Re-attach VS, set breakpoints
  10. Run mex file
  11. Drat, breakpoints no longer working
  12. Close Matlab, start new session, repeat steps 1-5, which works
I know that I used to be able to do just steps 1-9 circa 2015..
John
John on 27 Oct 2023
Jesse,
Yes, that sounds about right. There seems no rhyme or reason to when it finally 'works' but it has certainly grown worse over the years. I don't find the the vague 'Blame Microsoft' exaplanation a particularly compelling response.

Sign in to comment.

Categories

Find more on Write C Functions Callable from MATLAB (MEX Files) in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!