diff options
author | Araq <rumpf_a@web.de> | 2018-09-10 15:12:07 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2018-09-10 15:12:07 +0200 |
commit | 2d8adb8e03c4663a5f7148980e636abf187780ef (patch) | |
tree | 8d4be0b854500cacc33d9b805a0bd8a424ec013f /koch.nim | |
parent | 2fc63838c8d4fb235c5dbd665d131c48df4eb7b5 (diff) | |
download | Nim-2d8adb8e03c4663a5f7148980e636abf187780ef.tar.gz |
build nimble in debug mode to enable stack traces
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim index c302be4ca..92b3d5934 100644 --- a/koch.nim +++ b/koch.nim @@ -210,7 +210,7 @@ proc buildNimble(latest: bool) = else: exec("git checkout -f stable") exec("git pull") - nimexec("c --noNimblePath -p:compiler --nilseqs:on -d:release " & installDir / "src/nimble.nim") + nimexec("c --noNimblePath -p:compiler --nilseqs:on " & installDir / "src/nimble.nim") copyExe(installDir / "src/nimble".exe, "bin/nimble".exe) proc bundleNimsuggest(buildExe: bool) = |