Is there a way to trace through only project source in Delphi?

后端 未结 3 1276
野趣味
野趣味 2021-02-08 07:45

I\'m using Delphi 2010 and I\'m wondering if there\'s a way to trace through code which is in the project without tracing through calls to included VCLs.

For example - y

3条回答
  •  清酒与你
    2021-02-08 08:34

    Another method is to use the debug information and Local symbol information compiler directives - add {$D-$L-} to the start of each unit.

    This will ALWAYS suppress the generation of debug information for that unit. If you do need to trace into the code, comment out the directives.

提交回复
热议问题