diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-07-16 07:42:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-16 07:42:35 +0200 |
commit | 089e741ce4cd1249afd518aa30821309f5b2f8e9 (patch) | |
tree | 31e68698064e9a22a02be993d5648cb4f0355ad4 /koch.nim | |
parent | 5e6680406f39b2b0b90d8b137285e066cc358d43 (diff) | |
download | Nim-089e741ce4cd1249afd518aa30821309f5b2f8e9.tar.gz |
added Atlas helper tool (#18497)
* added Atlas helper tool * further improvements
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index 4ba0d0eb5..da7576e65 100644 --- a/koch.nim +++ b/koch.nim @@ -222,7 +222,13 @@ proc buildTools(args: string = "") = # `-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") + + nimCompileFold("Compile atlas", "tools/atlas/atlas.nim", options = "-d:release " & args, + outputName = "atlas") + proc nsis(latest: bool; args: string) = bundleNimbleExe(latest, args) |