mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-23 20:33:05 +00:00
update documentation
This commit is contained in:
parent
a7f860894d
commit
31ad970178
1 changed files with 39 additions and 0 deletions
39
doc.html
39
doc.html
|
@ -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 -Wno-<warning>
|
||||
|
|
Loading…
Reference in a new issue