diff options
author | Miran <narimiran@disroot.org> | 2020-07-10 16:44:12 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-10 16:44:12 +0200 |
commit | 371b416ac818412909243d10a66c20db3eaa23f3 (patch) | |
tree | a26eb969cd0c821a761f64ec336b988770ff6aba /compiler | |
parent | 04232d92cd401bf301a9e4cac582273356c86cfa (diff) | |
download | Nim-371b416ac818412909243d10a66c20db3eaa23f3.tar.gz |
fix #14912, make `--useVersion:1.0` work again (#14945)
* fix #14912, make `--useVersion:1.0` work again * a better fix * add test
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/commands.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/commands.nim b/compiler/commands.nim index cbf93238f..1984c894a 100644 --- a/compiler/commands.nim +++ b/compiler/commands.nim @@ -878,6 +878,7 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo; defineSymbol(conf.symbols, "NimPatch", "100") # old behaviors go here: defineSymbol(conf.symbols, "nimOldRelativePathBehavior") + undefSymbol(conf.symbols, "nimDoesntTrackDefects") ast.eqTypeFlags.excl {tfGcSafe, tfNoSideEffect} conf.globalOptions.incl optNimV1Emulation else: |