update documentation

This commit is contained in:
Dale Weiler 2012-12-01 20:12:33 +00:00
parent a7f860894d
commit 31ad970178

View file

@ -178,6 +178,22 @@
<td>-fperl-logic</td>
<td>Enables perl evalutaion/logic</td>
</tr>
<tr>
<td>-ftranslatable-strings</td>
<td>Enables translatable strings via .po file</td>
</tr>
<tr>
<td>-finitialized-nonconstants</td>
<td>Prevents initializations from becoming constant unless 'const' is specified as a qualifer</td>
</tr>
<tr>
<td>-fassign-function-types</td>
<td>Allows function types to be assignable even if their signature is invariant</td>
</tr>
<tr>
<td>-flno</td>
<td>Enables generation of progs.lno for engine VM backtraces</td>
</tr>
</table>
<h3>Warning options</h3>
<table border="0">
@ -253,6 +269,29 @@
<td>-Wmultifile-if</td>
<td>Enables warnings about multifile if statements</td>
</tr>
<tr>
<td>-Wdouble-declaration</td>
<td>Enables warnings about double declarations</td>
</tr>
<tr>
<td>-Wconst-var</td>
<td>Enables warnings about 'const var' and 'var const'</td>
</tr>
<tr>
<td>-Wmultibyte-character</td>
<td>Enables warnings about use of multibyte characters</td>
</tr>
<tr>
<td>-Wternary-precedence</td>
<td>Enables warnings about ternary expressions whos precedence may be not what expected</td>
</tr>
</table>
<table border="0">
<tr><td>Options</td><td>What it does</td></tr>
<tr>
<td>-Otail-recursion</td>
<td>Enables tail recursion optimization</td>
</tr>
</table>
<p>
Individual warnings may be disabled with &nbsp;-Wno-&lt;warning&gt;