Debugging mex-files. Visual Studio breakpoints not working.
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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)
0 comentarios
Respuestas (1)
Sarthak
el 15 de Mayo de 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 comentarios
Jesse Hopkins
el 27 de Oct. de 2023
I echo your sentiment John. For me, I have to use a procedure like:
- Start Matlab
- Compile mex file in debug
- Attach VS, set breakpoints
- Run mex file
- Break points work! (yay)
- Do some coding in the *.c file
- De-attach VS (to release *.mex file)
- Recompile mex file in debug
- Re-attach VS, set breakpoints
- Run mex file
- Drat, breakpoints no longer working
- 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..
Ver también
Categorías
Más información sobre MATLAB Compiler en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!