Syntax
/g[-]
The /g option generates all debugging information. No debugging options are set by default. The effect of using the /g option is the same as using the following options together:
Option | Action |
/g:l | Generate line number information |
/g:t | Generate debug tables |
Note To disable this option, use a dash (–) after the option on the command line.
Example
The following command creates a .class file called myClass.class
that contains debugging information:
JVC /g myClass.java