- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I got a problem. My solution includes several static library projects, but I can not hit the break point in one subroutine of the projects when debugging in x64 debug mode. Thethe breakpoint I set in the subroutine becomes that hollow maroon circle with a warning that saysThe breakpoint will not currently be hit. No symbols have been loaded for this document. But the break point can be hitin 32bit debug mode.
I do not know why, any one can tell me what the possible problems are. Thanks in advance.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The hollow moon is a result of the line within the source file you clicked on not being code of the build you are debugging. This can be due to:
clicking on a linethat was conditionaly not compiled in the debug build
clicking on a line in a file that was not included in the build
clicking on a line a file that was included but which had all debug information stripped from the file
clicking on a line that due to optimizations was optimized out of existence
clicking on a line that due to optimizations that was disbursed throught the program (inlined many places)
Jim Dempsey
clicking on a linethat was conditionaly not compiled in the debug build
clicking on a line in a file that was not included in the build
clicking on a line a file that was included but which had all debug information stripped from the file
clicking on a line that due to optimizations was optimized out of existence
clicking on a line that due to optimizations that was disbursed throught the program (inlined many places)
Jim Dempsey

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page