diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2019-01-18 00:03:26 -0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-01-18 09:03:26 +0100 |
commit | 27e2ed4375c21b196f5fd403c2199c63dcdb8bf0 (patch) | |
tree | ef2f9a2601f880774db6996e73424a6ca6490cb1 /doc/basicopt.txt | |
parent | 4b4e4fc029d3f151c1e8bcdafc1d9b381a7142a6 (diff) | |
download | Nim-27e2ed4375c21b196f5fd403c2199c63dcdb8bf0.tar.gz |
fix #9629 every binary cmd line option allows on/off/empty=on (#10353)
* fix #9629 every binary cmd line option allows on/off/empty=on * workaround refs #10359
Diffstat (limited to 'doc/basicopt.txt')
-rw-r--r-- | doc/basicopt.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/basicopt.txt b/doc/basicopt.txt index a9166d36c..96c9ced3d 100644 --- a/doc/basicopt.txt +++ b/doc/basicopt.txt @@ -15,7 +15,7 @@ Options: (Optionally: Define the value for that symbol, see: "compile time define pragmas") -u, --undef:SYMBOL undefine a conditional symbol - -f, --forceBuild force rebuilding of all modules + -f, --forceBuild:on|off force rebuilding of all modules --stackTrace:on|off turn stack tracing on|off --lineTrace:on|off turn line tracing on|off --threads:on|off turn support for multi-threading on|off @@ -35,7 +35,7 @@ Options: --debugger:native|endb use native debugger (gdb) | ENDB (experimental) --app:console|gui|lib|staticlib generate a console app|GUI app|DLL|static library - -r, --run run the compiled program with given arguments + -r, --run:on|off run the compiled program with given arguments --fullhelp show all command line switches -h, --help show this help |