Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to stop the debugger from going into delphi given units

My problem is that when ever i try to step using F7 in my delphi debugger it goes into system units like System.SysUtils etc... I dont care about these units I just want to step my own code. How can i turn this function off. I am using Delphi XE4 Architect

like image 342
Jacques Koekemoer Avatar asked Dec 26 '22 00:12

Jacques Koekemoer


1 Answers

To avoid trace into the Delphi RTL units when you press F7, You must uncheck the option Use debug .dcus

enter image description here

like image 151
RRUZ Avatar answered Dec 30 '22 11:12

RRUZ