DelphiBasics
$DebugInfo
Compiler Directive
Determines whether application debug information is built
{$DebugInfo Off}
1
2 {$DebugInfo On}
Description
The $DebugInfo compiler directive determines whether Delphi builds debug information for the application.
 
By default, Delphi builds the information, which provides the line number when a program abnormally terminates.
 
The overheads for keeping $DebugInfo on are minimal.
Notes
$DebugInfo is equivalent to $D.

The default value is $DebugInfo On
Related commands
$DDetermines whether application debug information is built
$LocalSymbolsDetermines what application debug information is built
$ReferenceInfoDetermines whether symbol reference information is built
$YDetermines whether application symbol information is built
 Download this web site as a Windows program.




 
Example code :

  
 
Delphi Programming © Neil Moffatt . All rights reserved.  |  Home Page