Debugging mex-files. Visual Studio breakpoints not working.

5 Ansichten (letzte 30 Tage)
John
John am 10 Mai 2023
Kommentiert: John am 27 Okt. 2023
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)

Antworten (1)

Sarthak
Sarthak am 15 Mai 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 Kommentare
Jesse Hopkins
Jesse Hopkins am 27 Okt. 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 am 27 Okt. 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.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Write C Functions Callable from MATLAB (MEX Files) finden Sie in Help Center und File Exchange

Produkte


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by