diff options
Diffstat (limited to 'compiler/main.nim')
-rw-r--r-- | compiler/main.nim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/main.nim b/compiler/main.nim index f7592a891..363327e40 100644 --- a/compiler/main.nim +++ b/compiler/main.nim @@ -58,7 +58,7 @@ proc commandCompileToC = registerPass(cgenPass) rodPass() #registerPass(cleanupPass()) - + compileProject() cgenWriteModules() if gCmd != cmdRun: @@ -363,7 +363,9 @@ proc mainCommand* = gVerbosity > 0): rawMessage(hintSuccessX, [$gLinesCompiled, formatFloat(epochTime() - gLastCmdTime, ffDecimal, 3), - formatSize(getTotalMem())]) + formatSize(getTotalMem()), + if condSyms.isDefined("release"): "Release Build" + else: "Debug Build"]) when PrintRopeCacheStats: echo "rope cache stats: " |