diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2016-03-12 13:29:27 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2016-03-28 02:26:38 +0200 |
commit | e2c8d9ade0867ff41a5f89f79ae4a05d9ca9fe87 (patch) | |
tree | d7199bfa42be94c365893b4da0a0aa140b698e63 /compiler/options.nim | |
parent | c11487b339018f01e72ff17fc919f2e3974de658 (diff) | |
download | Nim-e2c8d9ade0867ff41a5f89f79ae4a05d9ca9fe87.tar.gz |
beginnings of --gc:stack
Diffstat (limited to 'compiler/options.nim')
-rw-r--r-- | compiler/options.nim | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index 29cdd96fb..2716a98d3 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -86,7 +86,8 @@ type # please make sure we have under 32 options cmdRun # run the project via TCC backend TStringSeq* = seq[string] TGCMode* = enum # the selected GC - gcNone, gcBoehm, gcGo, gcMarkAndSweep, gcRefc, gcV2, gcGenerational + gcNone, gcBoehm, gcGo, gcStack, gcMarkAndSweep, gcRefc, + gcV2, gcGenerational IdeCmd* = enum ideNone, ideSug, ideCon, ideDef, ideUse, ideDus, ideChk, ideMod, |