diff options
author | Stefan Talpalaru <stefantalpalaru@yahoo.com> | 2015-05-31 19:07:44 +0200 |
---|---|---|
committer | Stefan Talpalaru <stefantalpalaru@yahoo.com> | 2015-05-31 19:07:44 +0200 |
commit | 50e96ad939c39c9d9e25b75803ed971fad49dc8f (patch) | |
tree | e3935fce15b3dab0573907d28d47869f1d18fbde /doc | |
parent | 6820b2fea919c033405e7e204343fddd947c2ef3 (diff) | |
download | Nim-50e96ad939c39c9d9e25b75803ed971fad49dc8f.tar.gz |
the Go GC - initial implementation
Diffstat (limited to 'doc')
-rw-r--r-- | doc/advopt.txt | 2 | ||||
-rw-r--r-- | doc/koch.txt | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/advopt.txt b/doc/advopt.txt index 195122cc7..a4f72e2d8 100644 --- a/doc/advopt.txt +++ b/doc/advopt.txt @@ -58,7 +58,7 @@ Advanced options: --skipUserCfg do not read the user's configuration file --skipParentCfg do not read the parent dirs' configuration files --skipProjCfg do not read the project's configuration file - --gc:refc|v2|markAndSweep|boehm|none + --gc:refc|v2|markAndSweep|boehm|go|none select the GC to use; default is 'refc' --index:on|off turn index file generation on|off --putenv:key=value set an environment variable diff --git a/doc/koch.txt b/doc/koch.txt index 7da137458..a58d386ea 100644 --- a/doc/koch.txt +++ b/doc/koch.txt @@ -71,7 +71,7 @@ options: are limited to pure Nim code at compilation time. Enabling this switch will allow macros to execute non-nim code at compilation time (eg. open a file and write to it). ---gc:refc|v2|markAndSweep|boehm|none +--gc:refc|v2|markAndSweep|boehm|go|none Selects which garbage collection strategy to use for the compiler and generated code. See the `Nim's Garbage Collector <gc.html>`_ documentation for more information. |