diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-11-24 15:49:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 15:49:32 +0100 |
commit | a0073d2d4c18f030eccef98a130f7f1f2ad9d67a (patch) | |
tree | e878dc9af846deca505d30a67ca5858d8a773dd6 /koch.nim | |
parent | c7c6b13a325958c6b55cbec2eb812eb06074101b (diff) | |
download | Nim-a0073d2d4c18f030eccef98a130f7f1f2ad9d67a.tar.gz |
renamed 'gc' switch to 'mm'; [backport:1.6] (#19187)
* renamed 'gc' switch to 'mm'; [backport:1.6] * better docs
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index f87828cdc..295b1584b 100644 --- a/koch.nim +++ b/koch.nim @@ -604,7 +604,7 @@ proc runCI(cmd: string) = when not defined(bsd): # the BSDs are overwhelmed already, so only run this test on the other machines: - kochExecFold("Boot Nim ORC", "boot -d:release --gc:orc --lib:lib") + kochExecFold("Boot Nim ORC", "boot -d:release --mm:orc --lib:lib") proc testUnixInstall(cmdLineRest: string) = csource("-d:danger" & cmdLineRest) |