Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29249 Discussions

Can not hit the break point in 64-bit

haijunwu
Beginner
305 Views
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.
0 Kudos
1 Reply
jimdempseyatthecove
Honored Contributor III
305 Views
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
0 Kudos
Reply