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 /compiler | |
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 'compiler')
-rw-r--r-- | compiler/commands.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim index a8caad916..d5c5f24e4 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -248,7 +248,7 @@ template deprecatedAlias(oldName, newName: string) = proc testCompileOptionArg*(conf: ConfigRef; switch, arg: string, info: TLineInfo): bool = case switch.normalize - of "gc": + of "gc", "mm": case arg.normalize of "boehm": result = conf.selectedGC == gcBoehm of "refc": result = conf.selectedGC == gcRefc @@ -596,7 +596,7 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo; processOnOffSwitchG(conf, {optForceFullMake}, arg, pass, info) of "project": processOnOffSwitchG(conf, {optWholeProject, optGenIndex}, arg, pass, info) - of "gc": + of "gc", "mm": if conf.backend == backendJs: return # for: bug #16033 expectArg(conf, switch, arg, pass, info) if pass in {passCmd2, passPP}: |