DelphiBasics
$L
Compiler Directive
Determines what application debug information is built
{$L-}
1
2 {$L+}
Description
The $L compiler directive determines whether Delphi saves local symbols  when building debug information for the application.
 
By default, Delphi builds the routine, variable and line number information, but this can be dsiabled by setting $L off.
 
The overheads for keeping $L on are minimal.
Notes
$LocalSymbols is equivalent to $L.

The default value is $L+
Related commands
$DebugInfoDetermines 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