Tool/software:
Hey, when I debugging my project, I met a problem that I cannot assert my break point. The break point shows like this, which indicate there is no symbol related with it. Can you help me solve this issue?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software:
Hey, when I debugging my project, I met a problem that I cannot assert my break point. The break point shows like this, which indicate there is no symbol related with it. Can you help me solve this issue?
Hi,
The reason for this behavior is that code is optimized.
One option is to open a disassembly window and set the breakpoint in the disassembly window.
Another option is to reduce the Optimization Level of the code - this is a compiler option. However decreasing the Optimization Level may increase the memory size and the code may no longer fit in the available memory
thank you
Cesar