summary refs log tree commit diff stats
path: root/koch.nim
diff options
context:
space:
mode:
authorAndreas Rumpf <rumpf_a@web.de>2021-04-11 17:37:32 +0200
committerGitHub <noreply@github.com>2021-04-11 17:37:32 +0200
commit4780b08b9d2b06d20ce45167b2b4d11a816518af (patch)
tree965915d135d7ff86ef48d5bda3a9e487d1a36b18 /koch.nim
parentceadf54d7649b8cc728fd0b6df966bbf28bf55bd (diff)
downloadNim-4780b08b9d2b06d20ce45167b2b4d11a816518af.tar.gz
IC: integrity checking (#17695)
* IC: integrity checking: the plumbing code
* progress
* progress + bugfix (yes, the code already found a bug)
* implemented integrity checking
Diffstat (limited to 'koch.nim')
-rw-r--r--koch.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/koch.nim b/koch.nim
index 3b00d3564..44d38589b 100644
--- a/koch.nim
+++ b/koch.nim
@@ -492,7 +492,7 @@ proc icTest(args: string) =
   for fragment in content.split("#!EDIT!#"):
     let file = inp.replace(".nim", "_temp.nim")
     writeFile(file, fragment)
-    var cmd = nimExe & " cpp --ic:on --listcmd "
+    var cmd = nimExe & " cpp --ic:on -d:nimIcIntegrityChecks --listcmd "
     if i == 0:
       cmd.add "-f "
     cmd.add quoteShell(file)