From 444e8dd8bf3ff29556a5683fd1b16ef7ce1fa3e2 Mon Sep 17 00:00:00 2001 From: EXetoC Date: Wed, 14 May 2014 18:13:15 +0200 Subject: [PATCH] Revert changes to koch. --- koch.nim | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/koch.nim b/koch.nim index 58c746ee83..4d0ac0254d 100644 --- a/koch.nim +++ b/koch.nim @@ -152,7 +152,7 @@ proc boot(args: string) = copyExe(findStartNimrod(), 0.thVersion) for i in 0..2: echo "iteration: ", i+1 - exec i.thVersion & " cpp $# $# compiler" / "nimrod.nim" % [bootOptions, args] + exec i.thVersion & " c $# $# compiler" / "nimrod.nim" % [bootOptions, args] if sameFileContent(output, i.thVersion): copyExe(output, finalDest) echo "executables are equal: SUCCESS!" @@ -282,7 +282,7 @@ proc tests(args: string) = proc temp(args: string) = var output = "compiler" / "nimrod".exe var finalDest = "bin" / "nimrod_temp".exe - exec("nimrod cpp compiler" / "nimrod") + exec("nimrod c compiler" / "nimrod") copyExe(output, finalDest) if args.len > 0: exec(finalDest & " " & args)