How do I stop the debugger from stepping into Delphi-supplied units?
问题 The debugger steps into the source code on errors (like with F7 ), but I want to restore the normal working mode where the Delphi basic DCUs (the library) are only compiled into my code, and the sources are not used in debugging. For example, on an error in my program, the debugger is stepping into Controls.pas, into TControl.Click . The normal case (right after installation) is for Delphi to step over these methods. Should I recompile Controls.pas without debug information? If so, how? I