2022-01-26 09:30 PM
Solved! Go to Solution.
2022-01-27 02:36 PM
Thank you so much! Now I know! Can we blame it on Diplopia?
Nah! I'll take it!
Problem resolved.
2022-01-27 03:55 AM
Try a lower optimization level for the compiler, like -O0.
At higher level, the compiler might move code around, reorder, inline,...
The underlying gdb can also break at function entry by using
break <functionname>
in the debugger console. Function might need an underscore prefix _, check .map file.
hth
KnarfB
2022-01-27 03:57 AM
I dont know if you did it on purpose but it seems you disabled all breakpoints.
try unselecting that option in your toolbar
2022-01-27 02:36 PM
Thank you so much! Now I know! Can we blame it on Diplopia?
Nah! I'll take it!
Problem resolved.