From 2d8adb8e03c4663a5f7148980e636abf187780ef Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 10 Sep 2018 15:12:07 +0200 Subject: [PATCH] build nimble in debug mode to enable stack traces --- koch.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koch.nim b/koch.nim index c302be4caf..92b3d59347 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) =