diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-05-20 11:52:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-20 11:52:46 +0200 |
commit | df429fa28772e077faa30dd6e3a701abf48c7669 (patch) | |
tree | 7c4a7fa9f583d8bfcb8446c26d46ed93454c8dd6 /config | |
parent | a1c82c39af812b54cd3dd1e472c9088457fb7dc5 (diff) | |
download | Nim-df429fa28772e077faa30dd6e3a701abf48c7669.tar.gz |
config system: special case -d:release and -d:danger [backport:1.4] (#18051)
Diffstat (limited to 'config')
-rw-r--r-- | config/nim.cfg | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config/nim.cfg b/config/nim.cfg index d3ab75825..3b964d124 100644 --- a/config/nim.cfg +++ b/config/nim.cfg @@ -50,6 +50,7 @@ path="$lib/pure" @end nimblepath="$home/.nimble/pkgs/" +# Syncronize with compiler/commands.specialDefine @if danger or quick: obj_checks:off field_checks:off @@ -63,6 +64,7 @@ nimblepath="$home/.nimble/pkgs/" line_dir:off @end +# Syncronize with compiler/commands.specialDefine @if release or danger: stacktrace:off excessiveStackTrace:off |