diff options
author | Endeg <vodomerkin@gmail.com> | 2021-06-30 23:19:22 +0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-30 10:19:22 -0700 |
commit | 28a4814019ea5d985d323def3766fe7f44f2e3e1 (patch) | |
tree | 11139b4e02c2521386cd2cfa10715f11c8401a3e /koch.nim | |
parent | 19263f27756e56026fe8d1ac05966b84010ae8d1 (diff) | |
download | Nim-28a4814019ea5d985d323def3766fe7f44f2e3e1.tar.gz |
Missing spaces when compiling testament and nim_dbg. (#18403)
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/koch.nim b/koch.nim index d3957069b..4ba0d0eb5 100644 --- a/koch.nim +++ b/koch.nim @@ -215,14 +215,14 @@ proc buildTools(args: string = "") = options = "-d:release " & args) when defined(windows): buildVccTool(args) bundleNimpretty(args) - nimCompileFold("Compile testament", "testament/testament.nim", options = "-d:release" & args) + nimCompileFold("Compile testament", "testament/testament.nim", options = "-d:release " & args) # pre-packages a debug version of nim which can help in many cases investigate issuses # withouth having to rebuild compiler. # `-d:nimDebugUtils` only makes sense when temporarily editing/debugging compiler # `-d:debug` should be changed to a flag that doesn't require re-compiling nim # `--opt:speed` is a sensible default even for a debug build, it doesn't affect nim stacktraces - nimCompileFold("Compile nim_dbg", "compiler/nim.nim", options = "--opt:speed --stacktrace -d:debug --stacktraceMsgs -d:nimCompilerStacktraceHints" & args, outputName = "nim_dbg") + nimCompileFold("Compile nim_dbg", "compiler/nim.nim", options = "--opt:speed --stacktrace -d:debug --stacktraceMsgs -d:nimCompilerStacktraceHints " & args, outputName = "nim_dbg") proc nsis(latest: bool; args: string) = bundleNimbleExe(latest, args) |