Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Blinker 5.10 Online Reference - <b> selective debugging information</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
 Selective debugging information
------------------------------------------------------------------------------
 If all the modules of a program are compiled with debugging information,
 then simply linking with the CODEVIEW option can create a huge amount of
 debugging information in the final .EXE. As an alternative, the CVON and
 CVOFF commands can be used to limit the areas for which CodeView information
 is processed and stored.

 The CVON command indicates that all files from that point on in the script
 file, until a CVOFF command, should have CodeView information included in
 the .EXE file. These commands can be used in pairs to selectively enable
 CodeView information for parts of the program.

 These commands should be used instead of the global CODEVIEW command, but
 the CVVERSION <version> command may be used to set the CodeView version with
 either choice.
 For example:

 # TEST.LNK with selective debugging
 FILE start     # Cannot be debugged
 CVON
 FILE one       # Can be debugged
 FILE two       # Can be debugged
 FILE three     # Can be debugged
 CVOFF
 FILE four      # Cannot be debugged
 FILE five      # Cannot be debugged
 FILE six       # Cannot be debugged
 FILE seven     # Cannot be debugged
 FILE eight     # Cannot be debugged
 CVON
 FILE nine      # Can be debugged
 CVOFF
 LIB inhouse    # Cannot be debugged

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson