Updating docs with new command line option
This commit is contained in:
parent
5a947114f3
commit
fec88978f3
|
|
@ -345,6 +345,7 @@ detailed descriptions of these arguments.
|
|||
-CFLAGS <flags> C++ compiler arguments for makefile
|
||||
--compiler <compiler-name> Tune for specified C++ compiler
|
||||
--compiler-include Include additional header in the precompiled one
|
||||
--constraint-array-limit <size> Maximum array size for constraint array reduction
|
||||
--converge-limit <loops> Tune convergence settle time
|
||||
--coverage Enable all coverage
|
||||
--coverage-expr Enable expression coverage
|
||||
|
|
|
|||
|
|
@ -262,6 +262,17 @@ Summary:
|
|||
limitation that allow only one precompiled header per compilation.
|
||||
Use this instead of ::vlopt:`-CFLAGS` with `-include <header-path>`.
|
||||
|
||||
.. option:: --constraint-array-limit <size>
|
||||
|
||||
Specifies the maximum array size for which array reduction methods
|
||||
(sum, product, and, or, xor) in constraint expressions will be
|
||||
expanded. Arrays larger than this limit will have their reduction
|
||||
constraints ignored with a `CONSTRAINTIGN` warning. This prevents
|
||||
excessive code generation for very large arrays.
|
||||
|
||||
Defaults to 64. Setting to 0 disables all array reduction constraint
|
||||
expansion.
|
||||
|
||||
.. option:: --converge-limit <loops>
|
||||
|
||||
Rarely needed. Specifies the maximum number of runtime iterations before
|
||||
|
|
|
|||
Loading…
Reference in New Issue