Home > Software engineering >  Vs debug set breakpoint unavailable??
Vs debug set breakpoint unavailable??

Time:10-04

When I debug openhevc under vs2013, set a breakpoint debugging, debugging and running the breakpoint but the disassembly window would appear, breakpoint show "current won't hit a breakpoint, processing vsopenhevc. Exe when accident symbol reader error", is someone encountered this kind of problem?

CodePudding user response:

Using VS2013 commissioning program, a breakpoint is not available, there are many situation,

1. To check VS Debug mode, be sure to set breakpoints in the Debug mode is,
2. Check the breakpoint you have no output module in debugging, debugging code that is passing through,
3. Find a program to generate directory, usually under the bin folder, delete to set breakpoints code corresponding DLL or exe file, to debug program,
4. A unified reference directory, set the reference to the same directory, prevent source and DLL version mismatch,
5. In the tools - options - debugging - conventional "source file and the original version completely matching" box,

Basically all of these cases, breakpoint debugging code is unavailable, any third-party libraries under distinguish, if there is a third party libraries, see a third-party library way of compilation, and their engineering way of compiling matches, always use the same version of the third party libraries, etc.,
  • Related