You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ant.apache.org by bo...@apache.org on 2003/02/12 15:26:31 UTC

cvs commit: ant/docs/manual/CoreTasks javac.html

bodewig     2003/02/12 06:26:31

  Modified:    docs/manual/CoreTasks javac.html
  Log:
  tell the truth about debuglevel.
  
  PR: 16884
  
  Revision  Changes    Path
  1.38      +8 -3      ant/docs/manual/CoreTasks/javac.html
  
  Index: javac.html
  ===================================================================
  RCS file: /home/cvs/ant/docs/manual/CoreTasks/javac.html,v
  retrieving revision 1.37
  retrieving revision 1.38
  diff -u -r1.37 -r1.38
  --- javac.html	24 Jan 2003 08:55:05 -0000	1.37
  +++ javac.html	12 Feb 2003 14:26:30 -0000	1.38
  @@ -194,8 +194,13 @@
     </tr>
     <tr>
       <td valign="top">debug</td>
  -    <td valign="top">Indicates whether source should be compiled with debug
  -      information; defaults to <code>off</code>.</td>
  +    <td valign="top">Indicates whether source should be compiled with
  +    debug information; defaults to <code>off</code>.  If set to
  +    <code>off</code>, <code>-g:none</code> will be passed on the
  +    command line for compilers that support it (for other compilers, no
  +    command line argument will be used).  If set to <code>true</code>,
  +    the value of the <code>debuglevel</code> attribute determines the
  +    command line argument.</td>
       <td align="center" valign="top">No</td>
     </tr>
     <tr>
  @@ -207,7 +212,7 @@
         following keywords:
         <code>lines</code>, <code>vars</code>, and <code>source</code>.
         If <code>debuglevel</code> is not specified, by default,
  -      <code>:none</code> will be
  +      nothing will be
         appended to <code>-g</code>.  If <code>debug</code> is not turned on,
         this attribute will be ignored.
       </td>