diff options
author | Araq <rumpf_a@web.de> | 2019-01-22 11:40:22 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2019-01-22 11:45:45 +0100 |
commit | ced62f330758c3a3a01a613ed9be4023fd65de1d (patch) | |
tree | 542cea16a813153bafcf057cca17d8406c15df8e | |
parent | 68254308312ce352612b11af164d82d930a1bf68 (diff) | |
download | Nim-ced62f330758c3a3a01a613ed9be4023fd65de1d.tar.gz |
compiler interface: don't overdocument the on|off switches
-rw-r--r-- | doc/advopt.txt | 5 | ||||
-rw-r--r-- | doc/basicopt.txt | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/advopt.txt b/doc/advopt.txt index 7ab85abfc..f713839d8 100644 --- a/doc/advopt.txt +++ b/doc/advopt.txt @@ -97,8 +97,9 @@ Advanced options: symbol matching is fuzzy so that --dynlibOverride:lua matches dynlib: "liblua.so.3" - --dynlibOverrideAll:on|off makes the dynlib pragma have no effect - --listCmd:on|off list the commands used to execute external programs + --dynlibOverrideAll + disables the effects of the dynlib pragma + --listCmd list the commands used to execute external programs --parallelBuild:0|1|... perform a parallel build value = number of processors (0 for auto-detect) --incremental:on|off only recompile the changed modules (experimental!) diff --git a/doc/basicopt.txt b/doc/basicopt.txt index 96c9ced3d..a65b2302e 100644 --- a/doc/basicopt.txt +++ b/doc/basicopt.txt @@ -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:on|off run the compiled program with given arguments + -r, --run run the compiled program with given arguments --fullhelp show all command line switches -h, --help show this help |