Skip to content

Commit

Permalink
config system: special case -d:release and -d:danger [backport:1.4] (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Araq committed May 20, 2021
1 parent a1c82c3 commit df429fa
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 7 deletions.
4 changes: 4 additions & 0 deletions changelog.md
Expand Up @@ -75,6 +75,10 @@

- `strformat` is now part of `include std/prelude`.

- The configuration subsystem now allows for `-d:release` and `-d:danger` to work as expected.
The downside is that these defines now have custom logic that doesn't apply for
other defines.


## Standard library additions and changes
- Added support for parenthesized expressions in `strformat`
Expand Down
19 changes: 15 additions & 4 deletions compiler/commands.nim
Expand Up @@ -482,6 +482,19 @@ proc setCommandEarly*(conf: ConfigRef, command: string) =
else:
conf.foreignPackageNotes = foreignPackageNotesDefault

proc specialDefine(conf: ConfigRef, key: string) =
# Keep this syncronized with the default config/nim.cfg!
if cmpIgnoreStyle(key, "nimQuirky") == 0:
conf.exc = excQuirky
elif cmpIgnoreStyle(key, "release") == 0 or cmpIgnoreStyle(key, "danger") == 0:
conf.options.excl {optStackTrace, optLineTrace, optLineDir, optOptimizeSize}
conf.globalOptions.excl {optExcessiveStackTrace, optCDebug}
conf.options.incl optOptimizeSpeed
if cmpIgnoreStyle(key, "danger") == 0 or cmpIgnoreStyle(key, "quick") == 0:
conf.options.excl {optObjCheck, optFieldCheck, optRangeCheck, optBoundsCheck,
optOverflowCheck, optAssert, optStackTrace, optLineTrace, optLineDir}
conf.globalOptions.excl {optCDebug}

proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo;
conf: ConfigRef) =
var
Expand Down Expand Up @@ -548,12 +561,10 @@ proc processSwitch*(switch, arg: string, pass: TCmdLinePass, info: TLineInfo;
expectArg(conf, switch, arg, pass, info)
if {':', '='} in arg:
splitSwitch(conf, arg, key, val, pass, info)
if cmpIgnoreStyle(key, "nimQuirky") == 0:
conf.exc = excQuirky
specialDefine(conf, key)
defineSymbol(conf.symbols, key, val)
else:
if cmpIgnoreStyle(arg, "nimQuirky") == 0:
conf.exc = excQuirky
specialDefine(conf, arg)
defineSymbol(conf.symbols, arg)
of "undef", "u":
expectArg(conf, switch, arg, pass, info)
Expand Down
3 changes: 2 additions & 1 deletion compiler/main.nim
Expand Up @@ -417,7 +417,8 @@ proc mainCommand*(graph: ModuleGraph) =
"project", project,
"output", output,
])
rawMessage(conf, hintBuildMode, build)
if conf.cmd in cmdBackends:
rawMessage(conf, hintBuildMode, build)

when PrintRopeCacheStats:
echo "rope cache stats: "
Expand Down
2 changes: 2 additions & 0 deletions config/nim.cfg
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tests/newconfig/tfoo.nim
@@ -1,6 +1,6 @@
discard """
cmd: "nim default --hint:cc:off --hint:cc $file"
output: '''hello world! 0.5'''
output: '''hello world! 0.5 true'''
nimout: '''[NimScript] exec: gcc -v'''
"""

Expand All @@ -10,4 +10,4 @@ when not defined(definedefine):
import math, mfriends

discard gen[int]()
echo "hello world! ", ln 2.0
echo "hello world! ", ln 2.0, " ", compileOption("opt", "speed")
2 changes: 2 additions & 0 deletions tests/newconfig/tfoo.nims
Expand Up @@ -3,6 +3,8 @@ mode = ScriptMode.Whatif

exec "gcc -v"

--define:release

--forceBuild
--path: "../friends"

Expand Down

0 comments on commit df429fa

Please sign in to comment.