diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2021-04-11 17:37:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-11 17:37:32 +0200 |
commit | 4780b08b9d2b06d20ce45167b2b4d11a816518af (patch) | |
tree | 965915d135d7ff86ef48d5bda3a9e487d1a36b18 /koch.nim | |
parent | ceadf54d7649b8cc728fd0b6df966bbf28bf55bd (diff) | |
download | Nim-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.nim | 2 |
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) |